MadelineProtoDocs/old_docs/API_docs_v51/constructors/messageFwdHeader.md

938 B

title description image
messageFwdHeader Forwarded message info https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messageFwdHeader

Back to constructors index

Forwarded message info

Attributes:

Name Type Required Description
from_id int Optional From ID
date int Yes Date
channel_id int Optional Channel ID
channel_post int Optional Channel post

Type: MessageFwdHeader

Example:

$messageFwdHeader = ['_' => 'messageFwdHeader', 'from_id' => int, 'date' => int, 'channel_id' => int, 'channel_post' => int];

Or, if you're into Lua:

messageFwdHeader={_='messageFwdHeader', from_id=int, date=int, channel_id=int, channel_post=int}