Package org.drinkless.tdlib
Class TdApi.PollOption
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.PollOption
-
- Enclosing class:
- TdApi
public static class TdApi.PollOption extends TdApi.Object
Describes one answer option of a poll.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanisBeingChosenTrue, if the option is being chosen by a pending setPollAnswer request.booleanisChosenTrue, if the option was chosen by the user.StringtextOption text; 1-100 characters.intvotePercentageThe percentage of votes for this option; 0-100.intvoterCountNumber of voters for this option, available only for closed or voted polls.
-
Constructor Summary
Constructors Constructor Description PollOption()Describes one answer option of a poll.PollOption(String text, int voterCount, int votePercentage, boolean isChosen, boolean isBeingChosen)Describes one answer option of a poll.
-
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
-
text
public String text
Option text; 1-100 characters.
-
voterCount
public int voterCount
Number of voters for this option, available only for closed or voted polls.
-
votePercentage
public int votePercentage
The percentage of votes for this option; 0-100.
-
isChosen
public boolean isChosen
True, if the option was chosen by the user.
-
isBeingChosen
public boolean isBeingChosen
True, if the option is being chosen by a pending setPollAnswer request.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PollOption
public PollOption()
Describes one answer option of a poll.
-
PollOption
public PollOption(String text, int voterCount, int votePercentage, boolean isChosen, boolean isBeingChosen)
Describes one answer option of a poll.- Parameters:
text- Option text; 1-100 characters.voterCount- Number of voters for this option, available only for closed or voted polls.votePercentage- The percentage of votes for this option; 0-100.isChosen- True, if the option was chosen by the user.isBeingChosen- True, if the option is being chosen by a pending setPollAnswer request.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-