Interface ResponseJoinRoom

interface ResponseJoinRoom {
    rtpCapabilities?: null | RtpCapabilities;
    success: boolean;
    roomRecvIPs: string[];
    meetingRoomParams: MeetingRoomParams;
    recordingParams: RecordingParams;
    secureCode: string;
    recordOnly: boolean;
    isHost: boolean;
    safeRoom: boolean;
    autoStartSafeRoom: boolean;
    safeRoomStarted: boolean;
    safeRoomEnded: boolean;
    reason?: string;
    banned?: boolean;
    suspended?: boolean;
    noAdmin?: boolean;
}

Properties

rtpCapabilities?: null | RtpCapabilities
success: boolean
roomRecvIPs: string[]
meetingRoomParams: MeetingRoomParams
recordingParams: RecordingParams
secureCode: string
recordOnly: boolean
isHost: boolean
safeRoom: boolean
autoStartSafeRoom: boolean
safeRoomStarted: boolean
safeRoomEnded: boolean
reason?: string
banned?: boolean
suspended?: boolean
noAdmin?: boolean