mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
1.5 KiB
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
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];