mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.5 KiB
1.5 KiB
title | description | nav_exclude | image | redirect_from |
---|---|---|---|---|
phone.groupCall | Contains info about a group call, and partial info about its participants. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/phone_groupCall.html |
Constructor: phone.groupCall
Contains info about a group call, and partial info about its participants.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
call | GroupCall | Yes | Info about the group call |
participants | Array of GroupCallParticipant | Yes | A partial list of participants. |
participants_next_offset | string | Yes | Next offset to use when fetching the remaining participants using phone.getGroupParticipants |
chats | Array of Chat | Yes | Chats mentioned in the participants vector |
users | Array of User | Yes | Users mentioned in the participants vector |
Type: phone.GroupCall
Example:
$phone_groupCall = ['_' => 'phone.groupCall', 'call' => GroupCall, 'participants' => [GroupCallParticipant, GroupCallParticipant], 'participants_next_offset' => 'string', 'chats' => [Chat, Chat], 'users' => [User, User]];