MadelineProtoDocs/old_docs/API_docs_v103/constructors/inputMessageReplyTo.md
2019-08-15 20:25:16 +02:00

39 lines
644 B
Markdown

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