93 lines
1.7 KiB
TypeScript
93 lines
1.7 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* dex API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 0.0.6
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { JobStatus } from './job-status';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { JobType } from './job-type';
|
|
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface JobDto
|
|
*/
|
|
export interface JobDto {
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'id'?: number;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'totalJobs'?: number | null;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'pendingJobs'?: number | null;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'processingJobs'?: number | null;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'completedJobs'?: number | null;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'failedJobs'?: number | null;
|
|
/**
|
|
*
|
|
* @type {Array<number>}
|
|
* @memberof JobDto
|
|
*/
|
|
'childrenIds'?: Array<number> | null;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof JobDto
|
|
*/
|
|
'attempts'?: number;
|
|
/**
|
|
*
|
|
* @type {JobStatus}
|
|
* @memberof JobDto
|
|
*/
|
|
'status': JobStatus;
|
|
/**
|
|
*
|
|
* @type {JobType}
|
|
* @memberof JobDto
|
|
*/
|
|
'type': JobType;
|
|
}
|
|
|
|
|
|
|