/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ResourceLink } from './ResourceLink'; import type { BackupJobDto } from './BackupJobDto'; /** * * @export * @interface BackupJobsDto */ export interface BackupJobsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof BackupJobsDto */ links: { [key: string]: ResourceLink; }; /** * The backups. * @type {Array} * @memberof BackupJobsDto */ items: Array; } /** * Check if a given object implements the BackupJobsDto interface. */ export declare function instanceOfBackupJobsDto(value: any): value is BackupJobsDto; export declare function BackupJobsDtoFromJSON(json: any): BackupJobsDto; export declare function BackupJobsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): BackupJobsDto; export declare function BackupJobsDtoToJSON(value?: BackupJobsDto | null, _ignoreDiscriminator?: boolean): any;