Package org.drinkless.tdlib
Class TdApi.MessageSendingStateFailed
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.MessageSendingState
org.drinkless.tdlib.TdApi.MessageSendingStateFailed
- Enclosing class:
- TdApi
The message failed to be sent.
-
Field Summary
FieldsModifier and TypeFieldDescriptionbooleanTrue, if the message can be re-sent using resendMessages or readdQuickReplyShortcutMessages.static final intIdentifier uniquely determining type of the object.The cause of the message sending failure.booleanTrue, if the message can be re-sent only if another quote is chosen in the message that is replied by the given message.booleanTrue, if the message can be re-sent only on behalf of a different sender.booleanTrue, if the message can be re-sent only if the message to be replied is removed.longThe number of Telegram Stars that must be paid to send the message; 0 if the current amount is correct.doubleTime left before the message can be re-sent, in seconds. -
Constructor Summary
ConstructorsConstructorDescriptionThe message failed to be sent.MessageSendingStateFailed(TdApi.Error error, boolean canRetry, boolean needAnotherSender, boolean needAnotherReplyQuote, boolean needDropReply, long requiredPaidMessageStarCount, double retryAfter) The message failed to be sent. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
error
The cause of the message sending failure. -
canRetry
public boolean canRetryTrue, if the message can be re-sent using resendMessages or readdQuickReplyShortcutMessages. -
needAnotherSender
public boolean needAnotherSenderTrue, if the message can be re-sent only on behalf of a different sender. -
needAnotherReplyQuote
public boolean needAnotherReplyQuoteTrue, 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 needDropReplyTrue, if the message can be re-sent only if the message to be replied is removed. This will be done automatically by resendMessages. -
requiredPaidMessageStarCount
public long requiredPaidMessageStarCountThe number of Telegram Stars that must be paid to send the message; 0 if the current amount is correct. -
retryAfter
public double retryAfterTime left before the message can be re-sent, in seconds. No update is sent when this field changes. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier 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, long requiredPaidMessageStarCount, 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 using resendMessages or readdQuickReplyShortcutMessages.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.requiredPaidMessageStarCount- The number of Telegram Stars that must be paid to send the message; 0 if the current amount is correct.retryAfter- Time left before the message can be re-sent, in seconds. No update is sent when this field changes.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-