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