Interface StartGroupCallRecording

Starts recording of an active group call. Requires groupCall.can_be_managed group call flag. Request type for Tdjson#startGroupCallRecording.

interface StartGroupCallRecording {
    @type: "startGroupCallRecording";
    group_call_id: number;
    record_video?: boolean;
    title: string;
    use_portrait_orientation?: boolean;
}

Properties

@type: "startGroupCallRecording"
group_call_id: number

Group call identifier.

record_video?: boolean

Pass true to record a video file instead of an audio file.

title: string

Group call recording title; 0-64 characters.

use_portrait_orientation?: boolean

Pass true to use portrait orientation for video instead of landscape one.