Package org.drinkless.tdlib
Class TdApi.SendQuickReplyShortcutMessages
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.Messages>
org.drinkless.tdlib.TdApi.SendQuickReplyShortcutMessages
- Enclosing class:
- TdApi
Sends messages from a quick reply shortcut. Requires Telegram Business subscription. Can't be used to send paid messages.
Returns Messages
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat to which to send messages.static final intIdentifier uniquely determining type of the object.intNon-persistent identifier, which will be returned back in messageSendingStatePending object and can be used to match sent messages and corresponding updateNewMessage updates.intUnique identifier of the quick reply shortcut. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which sends messages from a quick reply shortcut.SendQuickReplyShortcutMessages(long chatId, int shortcutId, int sendingId) Creates a function, which sends messages from a quick reply shortcut. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdIdentifier of the chat to which to send messages. The chat must be a private chat with a regular user. -
shortcutId
public int shortcutIdUnique identifier of the quick reply shortcut. -
sendingId
public int sendingIdNon-persistent identifier, which will be returned back in messageSendingStatePending object and can be used to match sent messages and corresponding updateNewMessage updates. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
SendQuickReplyShortcutMessages
public SendQuickReplyShortcutMessages()Default constructor for a function, which sends messages from a quick reply shortcut. Requires Telegram Business subscription. Can't be used to send paid messages.Returns
Messages -
SendQuickReplyShortcutMessages
public SendQuickReplyShortcutMessages(long chatId, int shortcutId, int sendingId) Creates a function, which sends messages from a quick reply shortcut. Requires Telegram Business subscription. Can't be used to send paid messages.Returns
Messages- Parameters:
chatId- Identifier of the chat to which to send messages. The chat must be a private chat with a regular user.shortcutId- Unique identifier of the quick reply shortcut.sendingId- Non-persistent identifier, which will be returned back in messageSendingStatePending object and can be used to match sent messages and corresponding updateNewMessage updates.
-
-
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
-