MadelineProtoDocs/docs/API_docs/constructors/inputMediaPoll.md

42 lines
1.1 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: inputMediaPoll
2019-12-27 17:48:04 +01:00
description: A poll
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaPoll
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
A poll
2018-12-26 02:56:50 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|poll|[Poll](../types/Poll.md) | Yes|The poll to send|
2020-06-16 17:50:25 +02:00
|correct\_answers|Array of [bytes](../types/bytes.md) | Optional|Correct answer IDs (for quiz polls)|
|solution|[string](../types/string.md) | Optional|Explanation of quiz solution|
|solution\_entities|Array of [MessageEntity](../types/MessageEntity.md) | Optional|[Message entities for styled text](https://core.telegram.org/api/entities)|
2018-12-26 02:56:50 +01:00
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
2020-06-16 17:50:25 +02:00
$inputMediaPoll = ['_' => 'inputMediaPoll', 'poll' => Poll, 'correct_answers' => ['bytes', 'bytes'], 'solution' => 'string', 'solution_entities' => [MessageEntity, MessageEntity]];
2018-12-26 02:56:50 +01:00
```
Or, if you're into Lua:
```lua
2020-06-16 17:50:25 +02:00
inputMediaPoll={_='inputMediaPoll', poll=Poll, correct_answers={'bytes'}, solution='string', solution_entities={MessageEntity}}
2018-12-26 02:56:50 +01:00
```