1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-13 22:47:22 +01:00
MadelineProto/old_docs/API_docs_v46/constructors/updateNewChannelMessage.md
2017-07-23 16:11:02 +02:00

956 B

title description
updateNewChannelMessage updateNewChannelMessage attributes, type and example

Constructor: updateNewChannelMessage

Back to constructors index

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, }