@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
34 lines • 1.33 kB
TypeScript
import { ConferenceLanguageEnum } from './ConferenceLanguageEnum';
import { ConferenceReportStatusEnum } from './ConferenceReportStatusEnum';
/** Conference room */
export interface ConferenceRoom {
/** Whether announce file is played before entrance */
announceFile: boolean;
/** The announce file name */
announceFilename?: string;
/** The announce sound id */
announceSoundId?: number;
/** Whether anonymous participants are allowed */
anonymousRejection: boolean;
/** Whether participants enter conference room muted */
enterMuted: boolean;
/** The events channel hash */
eventsChannel: string;
/** The expiration date of the conference room. */
expirationDate?: string;
/** The conference sounds language */
language: ConferenceLanguageEnum;
/** The conference pin number */
pin: string;
/** Whether conference is recorded */
recordStatus: boolean;
/** The email address to send conference report to */
reportEmail?: string;
/** The status of the reporting */
reportStatus: ConferenceReportStatusEnum;
/** The conference room number */
roomNumber: number;
/** True if you want to receive a white-labelled mail report of your conference */
whiteLabelReport: boolean;
}
//# sourceMappingURL=ConferenceRoom.d.ts.map