Interface BanGroupCallParticipants

Bans users from a group call not bound to a chat; requires groupCall.is_owned. Only the owner of the group call can invite the banned users back. Request type for Tdjson#banGroupCallParticipants.

interface BanGroupCallParticipants {
    @type: "banGroupCallParticipants";
    group_call_id: number;
    user_ids: string[];
}

Properties

@type: "banGroupCallParticipants"
group_call_id: number

Group call identifier.

user_ids: string[]

Identifiers of group call participants to ban; identifiers of unknown users from the update updateGroupCallParticipants can be also passed to the method.