MadelineProtoDocs/docs/API_docs/constructors/inputMediaPoll.md

40 lines
749 B
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-03-06 12:24:14 +01:00
|correct\_answers|Array of [bytes](../types/bytes.md) | Optional||
2018-12-26 02:56:50 +01:00
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
2020-03-06 12:24:14 +01:00
$inputMediaPoll = ['_' => 'inputMediaPoll', 'poll' => Poll, 'correct_answers' => ['bytes', 'bytes']];
2018-12-26 02:56:50 +01:00
```
Or, if you're into Lua:
```lua
2020-03-06 12:24:14 +01:00
inputMediaPoll={_='inputMediaPoll', poll=Poll, correct_answers={'bytes'}}
2018-12-26 02:56:50 +01:00
```