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

1.5 KiB

title description nav_exclude image redirect_from
phone.groupParticipants Info about the participants of a group call or livestream true https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/phone_groupParticipants.html

Constructor: phone.groupParticipants

Back to constructors index

Info about the participants of a group call or livestream

Attributes:

Name Type Required Description
count int Yes Number of participants
participants Array of GroupCallParticipant Yes List of participants
next_offset string Yes If not empty, the specified list of participants is partial, and more participants can be fetched specifying this parameter as offset in phone.getGroupParticipants.
chats Array of Chat Yes Mentioned chats
users Array of User Yes Mentioned users
version int Yes Version info

Type: phone.GroupParticipants

Example:

$phone_groupParticipants = ['_' => 'phone.groupParticipants', 'count' => int, 'participants' => [GroupCallParticipant, GroupCallParticipant], 'next_offset' => 'string', 'chats' => [Chat, Chat], 'users' => [User, User], 'version' => int];