Class TdApi.MessageSendingStateFailed

Enclosing class:
TdApi

public static class TdApi.MessageSendingStateFailed extends TdApi.MessageSendingState
The message failed to be sent.
  • Field Details

    • error

      public TdApi.Error error
      The cause of the message sending failure.
    • canRetry

      public boolean canRetry
      True, if the message can be re-sent.
    • needAnotherSender

      public boolean needAnotherSender
      True, if the message can be re-sent only on behalf of a different sender.
    • needAnotherReplyQuote

      public boolean needAnotherReplyQuote
      True, if the message can be re-sent only if another quote is chosen in the message that is replied by the given message.
    • needDropReply

      public boolean needDropReply
      True, if the message can be re-sent only if the message to be replied is removed. This will be done automatically by resendMessages.
    • retryAfter

      public double retryAfter
      Time left before the message can be re-sent, in seconds. No update is sent when this field changes.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • MessageSendingStateFailed

      public MessageSendingStateFailed()
      The message failed to be sent.
    • MessageSendingStateFailed

      public MessageSendingStateFailed(TdApi.Error error, boolean canRetry, boolean needAnotherSender, boolean needAnotherReplyQuote, boolean needDropReply, double retryAfter)
      The message failed to be sent.
      Parameters:
      error - The cause of the message sending failure.
      canRetry - True, if the message can be re-sent.
      needAnotherSender - True, if the message can be re-sent only on behalf of a different sender.
      needAnotherReplyQuote - True, if the message can be re-sent only if another quote is chosen in the message that is replied by the given message.
      needDropReply - True, if the message can be re-sent only if the message to be replied is removed. This will be done automatically by resendMessages.
      retryAfter - Time left before the message can be re-sent, in seconds. No update is sent when this field changes.
  • Method Details