MadelineProtoDocs/docs/API_docs/constructors/messageReplyHeader.md

885 B

title description image
messageReplyHeader messageReplyHeader attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messageReplyHeader

Back to constructors index

Attributes:

Name Type Required
reply_to_msg_id int Yes
reply_to_peer_id Peer Optional
reply_to_top_id int Optional

Type: MessageReplyHeader

Example:

$messageReplyHeader = ['_' => 'messageReplyHeader', 'reply_to_msg_id' => int, 'reply_to_peer_id' => Peer, 'reply_to_top_id' => int];

Or, if you're into Lua:

messageReplyHeader={_='messageReplyHeader', reply_to_msg_id=int, reply_to_peer_id=Peer, reply_to_top_id=int}