MadelineProtoDocs/docs/API_docs/constructors/inputMediaPoll.md

749 B

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

Constructor: inputMediaPoll

Back to constructors index

A poll

Attributes:

Name Type Required Description
poll Poll Yes The poll to send
correct_answers Array of bytes Optional

Type: InputMedia

Example:

$inputMediaPoll = ['_' => 'inputMediaPoll', 'poll' => Poll, 'correct_answers' => ['bytes', 'bytes']];

Or, if you're into Lua:

inputMediaPoll={_='inputMediaPoll', poll=Poll, correct_answers={'bytes'}}