MadelineProtoDocs/docs/API_docs/constructors/phone.groupCall.md
2024-05-01 14:53:46 +02:00

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

Back to constructors index

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]];