mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-13 22:47:22 +01:00
956 B
956 B
title | description |
---|---|
updateNewChannelMessage | updateNewChannelMessage attributes, type and example |
Constructor: updateNewChannelMessage
Attributes:
Name | Type | Required |
---|---|---|
message | Message | Yes |
channel_pts | int | Yes |
channel_pts_count | int | Yes |
Type: Update
Example:
$updateNewChannelMessage = ['_' => 'updateNewChannelMessage', 'message' => Message, 'channel_pts' => int, 'channel_pts_count' => int, ];
PWRTelegram json-encoded version:
{"_":"updateNewChannelMessage","message":"Message","channel_pts":"int","channel_pts_count":"int"}
Or, if you're into Lua:
updateNewChannelMessage={_='updateNewChannelMessage', message=Message, channel_pts=int, channel_pts_count=int, }