38 lines
759 B
Markdown
38 lines
759 B
Markdown
|
---
|
||
|
title: messageUserVoteInputOption
|
||
|
description: messageUserVoteInputOption attributes, type and example
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: messageUserVoteInputOption
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|user\_id|[int](../types/int.md) | Yes|
|
||
|
|date|[int](../types/int.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [MessageUserVote](../types/MessageUserVote.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$messageUserVoteInputOption = ['_' => 'messageUserVoteInputOption', 'user_id' => int, 'date' => int];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
messageUserVoteInputOption={_='messageUserVoteInputOption', user_id=int, date=int}
|
||
|
|
||
|
```
|
||
|
|
||
|
|