MadelineProtoDocs/old_docs/API_docs_v91/constructors/updateNewChannelMessage.md
2019-03-08 13:49:23 +01:00

1020 B

title description image
updateNewChannelMessage Update new channel message https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateNewChannelMessage

Back to constructors index

Update new channel message

Attributes:

Name Type Required Description
message Message Optional Message
pts int Yes Pts
pts_count int Yes Pts count

Type: Update

Example:

$updateNewChannelMessage = ['_' => 'updateNewChannelMessage', 'message' => Message, 'pts' => int, 'pts_count' => int];

PWRTelegram json-encoded version:

{"_": "updateNewChannelMessage", "message": Message, "pts": int, "pts_count": int}

Or, if you're into Lua:

updateNewChannelMessage={_='updateNewChannelMessage', message=Message, pts=int, pts_count=int}