telegram.PollAnswer¶
-
class
telegram.PollAnswer(poll_id, user, option_ids, **kwargs)¶ Bases:
telegram.base.TelegramObjectThis object represents an answer of a user in a non-anonymous poll.
-
poll_id¶ Unique poll identifier.
Type: str
-
user¶ The user, who changed the answer to the poll.
Type: telegram.User
-
option_ids¶ Identifiers of answer options, chosen by the user.
Type: List[ int]
Parameters: - poll_id (
str) – Unique poll identifier. - user (
telegram.User) – The user, who changed the answer to the poll. - option_ids (List[
int]) – 0-based identifiers of answer options, chosen by the user. May be empty if the user retracted their vote.
-