UNPKG

ch-admin-api-client-typescript

Version:
56 lines 1.3 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.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 { BackgroundJobStatus } from './background-job-status'; /** * * @export * @interface BackgroundJobInformation */ export interface BackgroundJobInformation { /** * * @type {string} * @memberof BackgroundJobInformation */ 'jobId'?: string | null; /** * * @type {BackgroundJobStatus} * @memberof BackgroundJobInformation */ 'status'?: BackgroundJobStatus; /** * * @type {Date} * @memberof BackgroundJobInformation */ 'createdAt'?: Date; /** * * @type {string} * @memberof BackgroundJobInformation */ 'description'?: string | null; /** * * @type {string} * @memberof BackgroundJobInformation */ 'domain'?: string | null; /** * * @type {string} * @memberof BackgroundJobInformation */ 'recordId'?: string; } //# sourceMappingURL=background-job-information.d.ts.map