MadelineProto/docs/API_docs/constructors/chatFull.md

30 lines
920 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: chatFull
2016-12-20 13:32:11 +01:00
description: chatFull attributes, type and example
2016-12-20 13:15:22 +01:00
---
## Constructor: chatFull
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[int](../types/int.md) | Required|
|participants|[ChatParticipants](../types/ChatParticipants.md) | Required|
|chat\_photo|[Photo](../types/Photo.md) | Required|
|notify\_settings|[PeerNotifySettings](../types/PeerNotifySettings.md) | Required|
|exported\_invite|[ExportedChatInvite](../types/ExportedChatInvite.md) | Required|
|bot\_info|Array of [BotInfo](../types/BotInfo.md) | Required|
2016-12-19 18:56:05 +01:00
### Type: [ChatFull](../types/ChatFull.md)
### Example:
```
2016-12-30 21:21:36 +01:00
$chatFull = ['_' => 'chatFull', 'id' => int, 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [Vector t], ];
```