/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { StorageFileMalwareScan } from './storageFileMalwareScan.zod'; import type { StorageThumbnail } from './storageThumbnail.zod'; import type { StorageUploadStatusCode } from './storageUploadStatusCode.zod'; export interface StorageUploadFileUrlResponse { code?: StorageUploadStatusCode; id?: string; malware?: StorageFileMalwareScan; mime?: string; server?: string; sha256Sum?: string; size?: string; thumbnail?: StorageThumbnail; url?: string; }