mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-11 22:59:37 +01:00
1.3 KiB
1.3 KiB
title | description |
---|---|
channelFull | channelFull attributes, type and example |
Constructor: channelFull
Attributes:
Name | Type | Required |
---|---|---|
id | int | Required |
about | string | Required |
participants_count | int | Optional |
admins_count | int | Optional |
kicked_count | int | Optional |
read_inbox_max_id | int | Required |
unread_count | int | Required |
unread_important_count | int | Required |
chat_photo | Photo | Required |
notify_settings | PeerNotifySettings | Required |
exported_invite | ExportedChatInvite | Required |
Type: ChatFull
Example:
$channelFull = ['_' => 'channelFull', 'id' => int, 'about' => string, 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'read_inbox_max_id' => int, 'unread_count' => int, 'unread_important_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, ];