MadelineProtoDocs/docs/API_docs/constructors/updateNewChannelMessage.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00: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}