Interface CreateRoomOptions

interface CreateRoomOptions {
    action: "join" | "create";
    meetingID: string;
    duration: number;
    capacity: number;
    userName: string;
    scheduledDate: number;
    secureCode: string;
    eventType:
        | "conference"
        | "webinar"
        | "chat"
        | "broadcast";
    recordOnly: boolean;
    eventStatus: "inactive" | "active";
    startIndex: number;
    pageSize: number;
    safeRoom: boolean;
    autoStartSafeRoom: boolean;
    safeRoomAction: "ban" | "warn" | "kick";
    dataBuffer: boolean;
    bufferType: "all" | "audio" | "images";
}

Properties

action: "join" | "create"
meetingID: string
duration: number
capacity: number
userName: string
scheduledDate: number
secureCode: string
eventType:
    | "conference"
    | "webinar"
    | "chat"
    | "broadcast"
recordOnly: boolean
eventStatus: "inactive" | "active"
startIndex: number
pageSize: number
safeRoom: boolean
autoStartSafeRoom: boolean
safeRoomAction: "ban" | "warn" | "kick"
dataBuffer: boolean
bufferType: "all" | "audio" | "images"