/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EngineLookup } from './engine-lookup'; import { StorageThumbnail } from './storage-thumbnail'; import { StorageUploadFileChannel } from './storage-upload-file-channel'; /** * * @export * @interface StorageFile */ export interface StorageFile { /** * * @type {StorageUploadFileChannel} * @memberof StorageFile */ channel?: StorageUploadFileChannel; /** * * @type {string} * @memberof StorageFile */ id?: string; /** * * @type {string} * @memberof StorageFile */ mime_type?: string; /** * * @type {string} * @memberof StorageFile */ name?: string; /** * * @type {string} * @memberof StorageFile */ reference_id?: string; /** * * @type {string} * @memberof StorageFile */ retention_until?: string; /** * * @type {string} * @memberof StorageFile */ sha256sum?: string; /** * * @type {string} * @memberof StorageFile */ size?: string; /** * * @type {StorageThumbnail} * @memberof StorageFile */ thumbnail?: StorageThumbnail; /** * * @type {string} * @memberof StorageFile */ uploaded_at?: string; /** * * @type {EngineLookup} * @memberof StorageFile */ uploaded_by?: EngineLookup; /** * * @type {string} * @memberof StorageFile */ uuid?: string; /** * * @type {string} * @memberof StorageFile */ view_name?: string; } //# sourceMappingURL=storage-file.d.ts.map