/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Asset, TapeFile } from './'; /** * * @export * @interface AssetBackup */ export interface AssetBackup { /** * * @type {number} * @memberof AssetBackup */ id: number; /** * * @type {TapeFile} * @memberof AssetBackup */ tapeFile: TapeFile; /** * * @type {Asset} * @memberof AssetBackup */ asset: Asset; /** * * @type {string} * @memberof AssetBackup */ readonly searchHighlight: string; /** * * @type {string} * @memberof AssetBackup */ customFieldsSnapshot?: string | null; } export declare function AssetBackupFromJSON(json: any): AssetBackup; export declare function AssetBackupFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetBackup; export declare function AssetBackupToJSON(value?: AssetBackup | null): any;