/** * 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 ScheduleUpdate */ export interface ScheduleUpdate { /** * * @type {{ [key: string]: string | undefined; }} * @memberof ScheduleUpdate */ variables?: { [key: string]: string | undefined; }; /** * * @type {number} * @memberof ScheduleUpdate */ type?: ScheduleUpdateTypeEnum; /** * * @type {boolean} * @memberof ScheduleUpdate */ enabled?: boolean; /** * * @type {Date} * @memberof ScheduleUpdate */ lastRun?: Date | null; /** * * @type {number} * @memberof ScheduleUpdate */ every?: number; /** * * @type {string} * @memberof ScheduleUpdate */ period?: ScheduleUpdatePeriodEnum; /** * * @type {string} * @memberof ScheduleUpdate */ crontabDayOfMonth?: string; /** * * @type {string} * @memberof ScheduleUpdate */ crontabDayOfWeek?: string; /** * * @type {string} * @memberof ScheduleUpdate */ crontabHour?: string; /** * * @type {string} * @memberof ScheduleUpdate */ crontabMinute?: string; /** * * @type {string} * @memberof ScheduleUpdate */ crontabMonthOfYear?: string; /** * * @type {number} * @memberof ScheduleUpdate */ job: number; } /** * @export * @enum {string} */ export declare enum ScheduleUpdateTypeEnum { NUMBER_1 = 1, NUMBER_2 = 2 } /** * @export * @enum {string} */ export declare enum ScheduleUpdatePeriodEnum { Minutes = "minutes", Hours = "hours", Days = "days" } export declare function ScheduleUpdateFromJSON(json: any): ScheduleUpdate; export declare function ScheduleUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleUpdate; export declare function ScheduleUpdateToJSON(value?: ScheduleUpdate | null): any;