/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { EngineLookup } from './engineLookup'; import type { StorageCustomFileProperties } from './storageCustomFileProperties'; import type { StorageThumbnail } from './storageThumbnail'; import type { StorageUploadFileChannel } from './storageUploadFileChannel'; export interface StorageFile { channel?: StorageUploadFileChannel; id?: string; mimeType?: string; name?: string; properties?: StorageCustomFileProperties; referenceId?: string; retentionUntil?: string; sha256Sum?: string; size?: string; thumbnail?: StorageThumbnail; uploadedAt?: string; uploadedBy?: EngineLookup; uuid?: string; viewName?: string; }