Parameters for updating an existing video room.

interface FFCUpdateVideoRoomParams {
    accessLevel?: PUBLIC;
    canAutoRoomCompositeRecording?: boolean;
    customData?: any;
    customType?: string;
    description?: string;
    manuallyApproval?: boolean;
    password?: string;
    title?: string;
}

Properties

accessLevel?: PUBLIC

The updated access level of the video room (optional). Uses FFCAccessLevel.

canAutoRoomCompositeRecording?: boolean

Whether automatic composite recording is now enabled (optional).

customData?: any

Updated custom data for the video room (optional).

customType?: string

The updated custom type assigned to the video room (optional).

description?: string

The new description of the video room (optional).

manuallyApproval?: boolean

Whether manual approval is now required for participants to join (optional).

password?: string

The updated password for the video room (optional).

title?: string

The new title of the video room (optional).