Interface GroupCallJoinParameters

Describes parameters used to join a group call.

interface GroupCallJoinParameters {
    @type: "groupCallJoinParameters";
    audio_source_id: number;
    is_muted?: boolean;
    is_my_video_enabled?: boolean;
    payload: string;
}

Properties

@type: "groupCallJoinParameters"
audio_source_id: number

Audio channel synchronization source identifier; received from tgcalls.

is_muted?: boolean

Pass true to join the call with muted microphone.

is_my_video_enabled?: boolean

Pass true if the user's video is enabled.

payload: string

Group call join payload; received from tgcalls.