MadelineProtoDocs/docs/API_docs/constructors/updateChannelTooLong.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
884 B
Markdown

---
title: updateChannelTooLong
description: Update channel too long
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateChannelTooLong
[Back to constructors index](index.md)
Update channel too long
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|channel\_id|[int](../types/int.md) | Yes|Channel ID|
|pts|[int](../types/int.md) | Optional|Pts|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateChannelTooLong = ['_' => 'updateChannelTooLong', 'channel_id' => int, 'pts' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updateChannelTooLong", "channel_id": int, "pts": int}
```
Or, if you're into Lua:
```lua
updateChannelTooLong={_='updateChannelTooLong', channel_id=int, pts=int}
```