Class TdApi.PollOption

  • Enclosing class:
    TdApi

    public static class TdApi.PollOption
    extends TdApi.Object
    Describes one answer option of a poll.
    • 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.