mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
30 lines
728 B
Markdown
30 lines
728 B
Markdown
|
---
|
||
|
title: "inputMessageReplyTo"
|
||
|
description: "Message to which the specified message replies to"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: inputMessageReplyTo
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Message to which the specified message replies to
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|id|[int](/API_docs/types/int.html) | Yes|ID of the message that replies to the message we need|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputMessage](/API_docs/types/InputMessage.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$inputMessageReplyTo = ['_' => 'inputMessageReplyTo', 'id' => int];
|
||
|
```
|