/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.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 ScheduleJobDto */ export interface ScheduleJobDto { /** * The ID of the schedule job. * @type {string} * @memberof ScheduleJobDto */ id: string; /** * The new status. * @type {string} * @memberof ScheduleJobDto */ status: string; /** * The target date and time when the content should be scheduled. * @type {Date} * @memberof ScheduleJobDto */ dueTime: Date; /** * The color of the scheduled status. * @type {string} * @memberof ScheduleJobDto */ color: string; /** * The user who schedule the content. * @type {string} * @memberof ScheduleJobDto */ scheduledBy: string; } /** * Check if a given object implements the ScheduleJobDto interface. */ export declare function instanceOfScheduleJobDto(value: any): value is ScheduleJobDto; export declare function ScheduleJobDtoFromJSON(json: any): ScheduleJobDto; export declare function ScheduleJobDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ScheduleJobDto; export declare function ScheduleJobDtoToJSON(value?: ScheduleJobDto | null, _ignoreDiscriminator?: boolean): any;