1.1 KiB
1.1 KiB
title | description |
---|---|
messageFwdHeader | messageFwdHeader attributes, type and example |
Constructor: messageFwdHeader
Attributes:
Name | Type | Required |
---|---|---|
from_id | int | Optional |
date | int | Yes |
channel_id | int | Optional |
channel_post | int | Optional |
post_author | string | Optional |
Type: MessageFwdHeader
Example:
$messageFwdHeader = ['_' => 'messageFwdHeader', 'from_id' => int, 'date' => int, 'channel_id' => int, 'channel_post' => int, 'post_author' => 'string'];
PWRTelegram json-encoded version:
{"_": "messageFwdHeader", "from_id": int, "date": int, "channel_id": int, "channel_post": int, "post_author": "string"}
Or, if you're into Lua:
messageFwdHeader={_='messageFwdHeader', from_id=int, date=int, channel_id=int, channel_post=int, post_author='string'}