Interface MeetingRoomParams

interface MeetingRoomParams {
    itemPageLimit: number;
    mediaType: "video" | "audio";
    addCoHost: boolean;
    targetOrientation: "portrait" | "landscape" | "neutral";
    targetOrientationHost: "portrait" | "landscape" | "neutral";
    targetResolution:
        | "hd"
        | "qhd"
        | "fhd"
        | "sd"
        | "QnHD";
    targetResolutionHost:
        | "hd"
        | "qhd"
        | "fhd"
        | "sd"
        | "QnHD";
    type: EventType;
    audioSetting: "allow" | "approval" | "disallow";
    videoSetting: "allow" | "approval" | "disallow";
    screenshareSetting: "allow" | "approval" | "disallow";
    chatSetting: "allow" | "disallow";
}

Properties

itemPageLimit: number
mediaType: "video" | "audio"
addCoHost: boolean
targetOrientation: "portrait" | "landscape" | "neutral"
targetOrientationHost: "portrait" | "landscape" | "neutral"
targetResolution:
    | "hd"
    | "qhd"
    | "fhd"
    | "sd"
    | "QnHD"
targetResolutionHost:
    | "hd"
    | "qhd"
    | "fhd"
    | "sd"
    | "QnHD"
type: EventType
audioSetting: "allow" | "approval" | "disallow"
videoSetting: "allow" | "approval" | "disallow"
screenshareSetting: "allow" | "approval" | "disallow"
chatSetting: "allow" | "disallow"