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