Package org.drinkless.tdlib
Class TdApi.UpdateNewChosenInlineResult
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Update
-
- org.drinkless.tdlib.TdApi.UpdateNewChosenInlineResult
-
- Enclosing class:
- TdApi
public static class TdApi.UpdateNewChosenInlineResult extends TdApi.Update
The user has chosen a result of an inline query; for bots only.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringinlineMessageIdIdentifier of the sent inline message, if known.StringqueryText of the query.StringresultIdIdentifier of the chosen result.longsenderUserIdIdentifier of the user who sent the query.TdApi.LocationuserLocationUser location; may be null.
-
Constructor Summary
Constructors Constructor Description UpdateNewChosenInlineResult()The user has chosen a result of an inline query; for bots only.UpdateNewChosenInlineResult(long senderUserId, TdApi.Location userLocation, String query, String resultId, String inlineMessageId)The user has chosen a result of an inline query; for bots only.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
senderUserId
public long senderUserId
Identifier of the user who sent the query.
-
userLocation
public TdApi.Location userLocation
User location; may be null.
-
query
public String query
Text of the query.
-
resultId
public String resultId
Identifier of the chosen result.
-
inlineMessageId
public String inlineMessageId
Identifier of the sent inline message, if known.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UpdateNewChosenInlineResult
public UpdateNewChosenInlineResult()
The user has chosen a result of an inline query; for bots only.
-
UpdateNewChosenInlineResult
public UpdateNewChosenInlineResult(long senderUserId, TdApi.Location userLocation, String query, String resultId, String inlineMessageId)The user has chosen a result of an inline query; for bots only.- Parameters:
senderUserId- Identifier of the user who sent the query.userLocation- User location; may be null.query- Text of the query.resultId- Identifier of the chosen result.inlineMessageId- Identifier of the sent inline message, if known.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-