MadelineProto/old_docs/API_docs_v66/constructors/updateReadChannelOutbox.md

44 lines
801 B
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: updateReadChannelOutbox
description: updateReadChannelOutbox attributes, type and example
---
## Constructor: updateReadChannelOutbox
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|channel\_id|[int](../types/int.md) | Yes|
|max\_id|[int](../types/int.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateReadChannelOutbox = ['_' => 'updateReadChannelOutbox', 'channel_id' => int, 'max_id' => int, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"updateReadChannelOutbox","channel_id":"int","max_id":"int"}
```
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
updateReadChannelOutbox={_='updateReadChannelOutbox', channel_id=int, max_id=int, }
```