Interface ToggleGroupCallScreenSharingIsPaused

Pauses or unpauses screen sharing in a joined group call. Request type for Tdjson#toggleGroupCallScreenSharingIsPaused.

interface ToggleGroupCallScreenSharingIsPaused {
    @type: "toggleGroupCallScreenSharingIsPaused";
    group_call_id: number;
    is_paused?: boolean;
}

Properties

@type: "toggleGroupCallScreenSharingIsPaused"
group_call_id: number

Group call identifier.

is_paused?: boolean

Pass true to pause screen sharing; pass false to unpause it.