MadelineProtoDocs/docs/API_docs/constructors/pollAnswerVoters.md

42 lines
1.1 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: pollAnswerVoters
2019-12-27 17:48:04 +01:00
description: A poll answer, and how users voted on it
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pollAnswerVoters
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
A poll answer, and how users voted on it
2018-12-26 02:56:50 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|chosen|[Bool](../types/Bool.md) | Optional|Whether we have chosen this answer|
2020-03-06 12:24:14 +01:00
|correct|[Bool](../types/Bool.md) | Optional||
2019-12-27 17:48:04 +01:00
|option|[bytes](../types/bytes.md) | Yes|The param that has to be passed to [messages.sendVote](../methods/messages.sendVote.md).|
|voters|[int](../types/int.md) | Yes|How many users voted for this option|
2018-12-26 02:56:50 +01:00
### Type: [PollAnswerVoters](../types/PollAnswerVoters.md)
### Example:
```php
2020-03-06 12:24:14 +01:00
$pollAnswerVoters = ['_' => 'pollAnswerVoters', 'chosen' => Bool, 'correct' => Bool, 'option' => 'bytes', 'voters' => int];
2018-12-26 02:56:50 +01:00
```
Or, if you're into Lua:
```lua
2020-03-06 12:24:14 +01:00
pollAnswerVoters={_='pollAnswerVoters', chosen=Bool, correct=Bool, option='bytes', voters=int}
2018-12-26 02:56:50 +01:00
```