/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface JobInformation */ export interface JobInformation { /** * * @type {string} * @memberof JobInformation */ name: string; /** * * @type {string} * @memberof JobInformation */ group: string; /** * * @type {string} * @memberof JobInformation */ jobClassName: string; /** * * @type {string} * @memberof JobInformation */ description: string; /** * * @type {string} * @memberof JobInformation */ cronExpression: string; /** * * @type {number} * @memberof JobInformation */ priority: number; /** * * @type {Date} * @memberof JobInformation */ lastScheduledFireTime?: Date; /** * * @type {Date} * @memberof JobInformation */ nextScheduledFireTime?: Date; /** * * @type {string} * @memberof JobInformation */ scheduleInformation?: string; } export declare function JobInformationFromJSON(json: any): JobInformation; export declare function JobInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobInformation; export declare function JobInformationToJSON(value?: JobInformation | null): any;