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
A user changed the answer to a poll; for bots only.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Update
TdApi.Update.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.String[]Unique identifiers of answer options, that were chosen by the user.int[]0-based identifiers of answer options, that were chosen by the user.longUnique poll identifier.Identifier of the message sender that changed the answer to the poll. -
Constructor Summary
ConstructorsConstructorDescriptionA user changed the answer to a poll; for bots only.UpdatePollAnswer(long pollId, TdApi.MessageSender voterId, String[] optionIds, int[] optionPositions) A user changed the answer to a poll; for bots only. -
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
-
pollId
public long pollIdUnique poll identifier. -
voterId
Identifier of the message sender that changed the answer to the poll. -
optionIds
Unique identifiers of answer options, that were chosen by the user. -
optionPositions
public int[] optionPositions0-based identifiers of answer options, that were chosen by the user. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
UpdatePollAnswer
public UpdatePollAnswer()A user changed the answer to a poll; for bots only. -
UpdatePollAnswer
public UpdatePollAnswer(long pollId, TdApi.MessageSender voterId, String[] optionIds, int[] optionPositions) A user changed the answer to a poll; for bots only.- Parameters:
pollId- Unique poll identifier.voterId- Identifier of the message sender that changed the answer to the poll.optionIds- Unique identifiers of answer options, that were chosen by the user.optionPositions- 0-based identifiers of answer options, that were chosen by the user.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Update- Returns:
- this.CONSTRUCTOR
-