telegram.PollOption¶
-
class
telegram.PollOption(text: str, voter_count: int, **kwargs)¶ Bases:
telegram.base.TelegramObjectThis object contains information about one answer option in a poll.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
textandvoter_countare equal.-
text¶ Option text, 1-100 characters.
Type: str
-
voter_count¶ Number of users that voted for this option.
Type: int
Parameters: - text (
str) – Option text, 1-100 characters. - voter_count (
int) – Number of users that voted for this option.
-