1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-14 23:46:54 +01:00
MadelineProto/docs/TD_docs/constructors/updateChannelFull.md
2017-07-23 16:11:02 +02:00

827 B

title description
updateChannelFull Some data from channelFull has been changed

Constructor: updateChannelFull

Back to constructors index

Some data from channelFull has been changed

Attributes:

Name Type Required Description
channel_full channelFull Yes New full information about the channel

Type: Update

Example:

$updateChannelFull = ['_' => 'updateChannelFull', 'channel_full' => channelFull, ];

PWRTelegram json-encoded version:

{"_":"updateChannelFull","channel_full":"channelFull"}

Or, if you're into Lua:

updateChannelFull={_='updateChannelFull', channel_full=channelFull, }