MadelineProtoDocs/docs/API_docs/constructors/pollAnswerVoters.md

41 lines
1007 B
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|
|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
$pollAnswerVoters = ['_' => 'pollAnswerVoters', 'chosen' => Bool, 'option' => 'bytes', 'voters' => int];
```
Or, if you're into Lua:
```lua
pollAnswerVoters={_='pollAnswerVoters', chosen=Bool, option='bytes', voters=int}
```