/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 ScheduleReference */ export interface ScheduleReference { /** * * @type {number} * @memberof ScheduleReference */ id: number; /** * * @type {{ [key: string]: string | undefined; }} * @memberof ScheduleReference */ readonly variables?: { [key: string]: string | undefined; }; /** * * @type {Date} * @memberof ScheduleReference */ readonly nextRun?: Date; /** * * @type {number} * @memberof ScheduleReference */ readonly type?: ScheduleReferenceTypeEnum; /** * * @type {boolean} * @memberof ScheduleReference */ readonly enabled?: boolean; /** * * @type {Date} * @memberof ScheduleReference */ readonly lastRun?: Date | null; /** * * @type {number} * @memberof ScheduleReference */ readonly every?: number; /** * * @type {string} * @memberof ScheduleReference */ readonly period?: ScheduleReferencePeriodEnum; /** * * @type {string} * @memberof ScheduleReference */ readonly crontabDayOfMonth?: string; /** * * @type {string} * @memberof ScheduleReference */ readonly crontabDayOfWeek?: string; /** * * @type {string} * @memberof ScheduleReference */ readonly crontabHour?: string; /** * * @type {string} * @memberof ScheduleReference */ readonly crontabMinute?: string; /** * * @type {string} * @memberof ScheduleReference */ readonly crontabMonthOfYear?: string; /** * * @type {number} * @memberof ScheduleReference */ readonly job?: number; } /** * @export * @enum {string} */ export declare enum ScheduleReferenceTypeEnum { NUMBER_1 = 1, NUMBER_2 = 2 } /** * @export * @enum {string} */ export declare enum ScheduleReferencePeriodEnum { Minutes = "minutes", Hours = "hours", Days = "days" } export declare function ScheduleReferenceFromJSON(json: any): ScheduleReference; export declare function ScheduleReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleReference; export declare function ScheduleReferenceToJSON(value?: ScheduleReference | null): any;