/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelMediaExporterExportStatus } from './webitelMediaExporterExportStatus.zod'; /** * Metadata about an export task immediately after creation. */ export interface WebitelMediaExporterExportTask { /** Target name of the PDF file. */ fileName?: string; /** MIME type (usually application/pdf). */ mimeType?: string; /** File size in bytes (0 if not yet generated). */ size?: string; /** Current lifecycle status of the task. */ status?: WebitelMediaExporterExportStatus; /** Unique ID to track the background task. */ taskId?: string; }