1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
inputMediaPoll | A poll | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputMediaPoll
A poll
Attributes:
Name | Type | Required | Description |
---|---|---|---|
poll | Poll | Yes | The poll to send |
correct_answers | Array of bytes | Optional | Correct answer IDs (for quiz polls) |
solution | string | Optional | Explanation of quiz solution |
solution_entities | Array of MessageEntity | Optional | Message entities for styled text |
Type: InputMedia
Example:
$inputMediaPoll = ['_' => 'inputMediaPoll', 'poll' => Poll, 'correct_answers' => ['bytes', 'bytes'], 'solution' => 'string', 'solution_entities' => [MessageEntity, MessageEntity]];
Or, if you're into Lua:
inputMediaPoll={_='inputMediaPoll', poll=Poll, correct_answers={'bytes'}, solution='string', solution_entities={MessageEntity}}