/** * 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 { JobStatus } from './JobStatus'; import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface BackupJobDto */ export interface BackupJobDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof BackupJobDto */ links: { [key: string]: ResourceLink; }; /** * The ID of the backup job. * @type {string} * @memberof BackupJobDto */ id: string; /** * The time when the job has been started. * @type {Date} * @memberof BackupJobDto */ started: Date; /** * The time when the job has been stopped. * @type {Date} * @memberof BackupJobDto */ stopped?: Date | null; /** * The number of handled events. * @type {number} * @memberof BackupJobDto */ handledEvents: number; /** * The number of handled assets. * @type {number} * @memberof BackupJobDto */ handledAssets: number; /** * * @type {JobStatus} * @memberof BackupJobDto */ status: JobStatus; } /** * Check if a given object implements the BackupJobDto interface. */ export declare function instanceOfBackupJobDto(value: any): value is BackupJobDto; export declare function BackupJobDtoFromJSON(json: any): BackupJobDto; export declare function BackupJobDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): BackupJobDto; export declare function BackupJobDtoToJSON(value?: BackupJobDto | null, _ignoreDiscriminator?: boolean): any;