MadelineProtoDocs/docs/API_docs/constructors/messageUserVoteMultiple.md

41 lines
974 B
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: messageUserVoteMultiple
2020-06-16 17:50:25 +02:00
description: How a user voted in a multiple-choice poll
2020-03-06 12:24:14 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageUserVoteMultiple
[Back to constructors index](index.md)
2020-06-16 17:50:25 +02:00
How a user voted in a multiple-choice poll
2020-03-06 12:24:14 +01:00
### Attributes:
2020-06-16 17:50:25 +02:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user\_id|[int](../types/int.md) | Yes|User ID|
|options|Array of [bytes](../types/bytes.md) | Yes|Options chosen by the user|
|date|[int](../types/int.md) | Yes|When did the user cast their votes|
2020-03-06 12:24:14 +01:00
### Type: [MessageUserVote](../types/MessageUserVote.md)
### Example:
```php
$messageUserVoteMultiple = ['_' => 'messageUserVoteMultiple', 'user_id' => int, 'options' => ['bytes', 'bytes'], 'date' => int];
```
Or, if you're into Lua:
```lua
messageUserVoteMultiple={_='messageUserVoteMultiple', user_id=int, options={'bytes'}, date=int}
```