PollOption

class telegram.PollOption(text, voter_count, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

This 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 text and voter_count are equal.

Parameters:
text[source]

Option text, 1-100 characters.

Type:

str

voter_count[source]

Number of users that voted for this option.

Type:

int

Available In

telegram.Poll.options

MAX_LENGTH = 100[source]

telegram.constants.PollLimit.MAX_OPTION_LENGTH

New in version 20.0.

MIN_LENGTH = 1[source]

telegram.constants.PollLimit.MIN_OPTION_LENGTH

New in version 20.0.