Package org.drinkless.tdlib
Class TdApi.SendInlineQueryResultMessage
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.Message>
org.drinkless.tdlib.TdApi.SendInlineQueryResultMessage
- Enclosing class:
- TdApi
Sends the result of an inline query as a message. Returns the sent message. Always clears a chat draft message.
Returns Message
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongTarget chat.static final intIdentifier uniquely determining type of the object.booleanPass true to hide the bot, via which the message is sent.Options to be used to send the message; pass null to use default options.longIdentifier of the inline query.Information about the message or story to be replied; pass null if none.Identifier of the inline query result.Topic in which the message will be sent; pass null if none. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which sends the result of an inline query as a message.SendInlineQueryResultMessage(long chatId, TdApi.MessageTopic topicId, TdApi.InputMessageReplyTo replyTo, TdApi.MessageSendOptions options, long queryId, String resultId, boolean hideViaBot) Creates a function, which sends the result of an inline query as a message. -
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 chatIdTarget chat. -
topicId
Topic in which the message will be sent; pass null if none. -
replyTo
Information about the message or story to be replied; pass null if none. -
options
Options to be used to send the message; pass null to use default options. -
queryId
public long queryIdIdentifier of the inline query. -
resultId
Identifier of the inline query result. -
hideViaBot
public boolean hideViaBotPass true to hide the bot, via which the message is sent. Can be used only for bots getOption("animation_search_bot_username"), getOption("photo_search_bot_username"), and getOption("venue_search_bot_username"). -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
SendInlineQueryResultMessage
public SendInlineQueryResultMessage()Default constructor for a function, which sends the result of an inline query as a message. Returns the sent message. Always clears a chat draft message.Returns
Message -
SendInlineQueryResultMessage
public SendInlineQueryResultMessage(long chatId, TdApi.MessageTopic topicId, TdApi.InputMessageReplyTo replyTo, TdApi.MessageSendOptions options, long queryId, String resultId, boolean hideViaBot) Creates a function, which sends the result of an inline query as a message. Returns the sent message. Always clears a chat draft message.Returns
Message- Parameters:
chatId- Target chat.topicId- Topic in which the message will be sent; pass null if none.replyTo- Information about the message or story to be replied; pass null if none.options- Options to be used to send the message; pass null to use default options.queryId- Identifier of the inline query.resultId- Identifier of the inline query result.hideViaBot- Pass true to hide the bot, via which the message is sent. Can be used only for bots getOption("animation_search_bot_username"), getOption("photo_search_bot_username"), and getOption("venue_search_bot_username").
-
-
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
-