mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-06 15:18:15 +01:00
22 lines
783 B
Markdown
22 lines
783 B
Markdown
|
## Constructor: chatFull
|
||
|
|
||
|
### 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|
|
||
|
|
||
|
|
||
|
### Type: [ChatFull](../types/ChatFull.md)
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
|
||
|
```
|
||
|
$chatFull = ['id' => int, 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo], ];
|
||
|
```
|