/** * 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 JobConfig */ export interface JobConfig { /** * * @type {string} * @memberof JobConfig */ name: string; /** * * @type {string} * @memberof JobConfig */ className: string; /** * * @type {string} * @memberof JobConfig */ description: string; /** * * @type {string} * @memberof JobConfig */ cronExpression: string; /** * * @type {string} * @memberof JobConfig */ group: string; /** * * @type {number} * @memberof JobConfig */ priority: number; } export declare function JobConfigFromJSON(json: any): JobConfig; export declare function JobConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobConfig; export declare function JobConfigToJSON(value?: JobConfig | null): any;