Package org.drinkless.tdlib
Class TdApi.UpdatePollAnswer
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Update
-
- org.drinkless.tdlib.TdApi.UpdatePollAnswer
-
- Enclosing class:
- TdApi
public static class TdApi.UpdatePollAnswer extends TdApi.Update
A user changed the answer to a poll; for bots only.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.int[]optionIds0-based identifiers of answer options, chosen by the user.longpollIdUnique poll identifier.longuserIdThe user, who changed the answer to the poll.
-
Constructor Summary
Constructors Constructor Description UpdatePollAnswer()A user changed the answer to a poll; for bots only.UpdatePollAnswer(long pollId, long userId, int[] optionIds)A user changed the answer to a poll; 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
-
pollId
public long pollId
Unique poll identifier.
-
userId
public long userId
The user, who changed the answer to the poll.
-
optionIds
public int[] optionIds
0-based identifiers of answer options, chosen by the user.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UpdatePollAnswer
public UpdatePollAnswer()
A user changed the answer to a poll; for bots only.
-
UpdatePollAnswer
public UpdatePollAnswer(long pollId, long userId, int[] optionIds)A user changed the answer to a poll; for bots only.- Parameters:
pollId- Unique poll identifier.userId- The user, who changed the answer to the poll.optionIds- 0-based identifiers of answer options, chosen by the user.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-