Raw.phone.GetGroupParticipants
Get group call participants
phone.getGroupParticipants#c558d8ab call:InputGroupCall ids:Vector<InputPeer> sources:Vector<int> offset:string limit:int = phone.GroupParticipants;
export namespace Raw {
export namespace phone {
export class GetGroupParticipants {
constructor(params: {
call: Raw.TypeInputGroupCall;
ids: Array<Raw.TypeInputPeer>;
sources: Array<number>;
offset: string;
limit: number;
}) {}
}
}
}
This is a function constructor, you can use it as method when call invoke
Layer: 185
Constructor ID: 0xc558d8ab
Property
call
: Raw.TypeInputGroupCallGroup call
ids
: Array of Raw.TypeInputPeerIf specified, will fetch group participant info about the specified peers
sources
: Array of numberIf specified, will fetch group participant info about the specified webrtc source ids
offset
: stringOffset for results, taken from the nextOffset field of phone.groupparticipants, initially an empty string. note: if no more results are available, the method call will return an empty nextOffset; thus, avoid providing the nextOffset returned in phone.groupparticipants if it is empty, to avoid an infinite loop.
limit
: numberMaximum number of results to return, see pagination