1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
messageFwdHeader | Info about a forwarded message | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messageFwdHeader
Info about a forwarded message
Attributes:
Name | Type | Required | Description |
---|---|---|---|
from_id | int | Optional | The ID of the user that originally sent the message |
date | int | Yes | When was the message originally sent |
channel_id | int | Optional | ID of the channel from which the message was forwarded |
channel_post | int | Optional | ID of the channel message that was forwarded |
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}