MadelineProtoDocs/old_docs/API_docs_v102/constructors/poll.md
2019-06-24 15:45:02 +02:00

831 B

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
closed Bool Optional Closed?
question string Yes Question
answers Array of PollAnswer Yes Answers

Type: Poll

Example:

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

Or, if you're into Lua:

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