1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 19:36:56 +01:00
MadelineProto/docs/TD_docs/constructors/updateChannel.md
2017-07-23 16:11:02 +02:00

744 B

title description
updateChannel Some data about a channel has been changed

Constructor: updateChannel

Back to constructors index

Some data about a channel has been changed

Attributes:

Name Type Required Description
channel channel Yes New data about the channel

Type: Update

Example:

$updateChannel = ['_' => 'updateChannel', 'channel' => channel, ];

PWRTelegram json-encoded version:

{"_":"updateChannel","channel":"channel"}

Or, if you're into Lua:

updateChannel={_='updateChannel', channel=channel, }