39 lines
602 B
Markdown
39 lines
602 B
Markdown
---
|
|
title: inputMessageID
|
|
description: Message ID
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: inputMessageID
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Message ID
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|id|[int](../types/int.md) | Yes|ID|
|
|
|
|
|
|
|
|
### Type: [InputMessage](../types/InputMessage.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$inputMessageID = ['_' => 'inputMessageID', 'id' => int];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
inputMessageID={_='inputMessageID', id=int}
|
|
|
|
```
|
|
|
|
|