MadelineProtoDocs/docs/API_docs/constructors/pollAnswerVoters.md

1.1 KiB

title description image
pollAnswerVoters A poll answer, and how users voted on it https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pollAnswerVoters

Back to constructors index

A poll answer, and how users voted on it

Attributes:

Name Type Required Description
chosen Bool Optional Whether we have chosen this answer
correct Bool Optional
option bytes Yes The param that has to be passed to messages.sendVote.
voters int Yes How many users voted for this option

Type: PollAnswerVoters

Example:

$pollAnswerVoters = ['_' => 'pollAnswerVoters', 'chosen' => Bool, 'correct' => Bool, 'option' => 'bytes', 'voters' => int];

Or, if you're into Lua:

pollAnswerVoters={_='pollAnswerVoters', chosen=Bool, correct=Bool, option='bytes', voters=int}