MadelineProto/docs/TD_docs/constructors/updateChannelFull.md

45 lines
824 B
Markdown
Raw Normal View History

---
title: updateChannelFull
description: Some data from channelFull has been changed
---
## Constructor: updateChannelFull
[Back to constructors index](index.md)
Some data from channelFull has been changed
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|channel\_full|[channelFull](../types/channelFull.md) | Yes|New full information about the channel|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateChannelFull = ['_' => 'updateChannelFull', 'channel_full' => channelFull];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateChannelFull", "channel_full": channelFull}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateChannelFull={_='updateChannelFull', channel_full=channelFull}
```