Interface JoinVideoChat

Joins an active video chat. Returns join response payload for tgcalls. Request type for Tdjson#joinVideoChat.

interface JoinVideoChat {
    @type: "joinVideoChat";
    group_call_id: number;
    invite_hash: string;
    join_parameters: GroupCallJoinParameters;
    participant_id: MessageSender;
}

Properties

@type: "joinVideoChat"
group_call_id: number

Group call identifier.

invite_hash: string

Invite hash as received from internalLinkTypeVideoChat.

join_parameters: GroupCallJoinParameters

Parameters to join the call.

participant_id: MessageSender

Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only.