MadelineProtoDocs/docs/API_docs/constructors/poll.md

1.2 KiB

title description image
poll Poll https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: poll

Back to constructors index

Poll

Attributes:

Name Type Required Description
id long Yes ID of the poll
closed Bool Optional Whether the poll is closed and doesn't accept any more answers
public_voters Bool Optional
multiple_choice Bool Optional
quiz Bool Optional
question string Yes The question of the poll
answers Array of PollAnswer Yes Answers

Type: Poll

Example:

$poll = ['_' => 'poll', 'id' => long, 'closed' => Bool, 'public_voters' => Bool, 'multiple_choice' => Bool, 'quiz' => Bool, 'question' => 'string', 'answers' => [PollAnswer, PollAnswer]];

Or, if you're into Lua:

poll={_='poll', id=long, closed=Bool, public_voters=Bool, multiple_choice=Bool, quiz=Bool, question='string', answers={PollAnswer}}