MadelineProtoDocs/old_docs/API_docs_v82/constructors/inputMessageReplyTo.md

39 lines
644 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
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}
```