1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
updateNewChannelMessage | Update new channel message | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateNewChannelMessage
Update new channel message
Attributes:
Name | Type | Required | Description |
---|---|---|---|
message | Message | Optional | Message |
channel_pts | int | Yes | Channel pts |
channel_pts_count | int | Yes | Channel pts count |
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}