Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
---
|
|
|
|
title: chat
|
|
|
|
description: chat attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: chat
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|id|[int](../types/int.md) | Yes|
|
|
|
|
|title|[string](../types/string.md) | Yes|
|
|
|
|
|photo|[ChatPhoto](../types/ChatPhoto.md) | Yes|
|
|
|
|
|participants\_count|[int](../types/int.md) | Yes|
|
|
|
|
|date|[int](../types/int.md) | Yes|
|
|
|
|
|left|[Bool](../types/Bool.md) | Yes|
|
|
|
|
|version|[int](../types/int.md) | Yes|
|
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Chat](../types/Chat.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$chat = ['_' => 'chat', 'id' => int, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'left' => Bool, 'version' => int, ];
|
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
chat={_='chat', id=int, title=string, photo=ChatPhoto, participants_count=int, date=int, left=Bool, version=int, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|