/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebMeetingBackendCreateMeetingRequestVariables } from './webMeetingBackendCreateMeetingRequestVariables'; /** * Request to create a new meeting. */ export interface WebMeetingBackendCreateMeetingRequest { /** Base path for the generated meeting URL. */ basePath?: string; /** Identifier of the domain owning the meeting. */ domainId?: string; /** Expiration time in seconds from the moment of creation. */ expireSec?: string; /** Title or topic of the meeting. */ title?: string; /** Custom metadata or configuration variables. */ variables?: WebMeetingBackendCreateMeetingRequestVariables; }