/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type CrontabSchedule = { /** * Cron Minutes to Run. Use "*" for "all". (Example: "0,30") */ minute?: string; /** * Cron Hours to Run. Use "*" for "all". (Example: "8,20") */ hour?: string; /** * Cron Days Of The Week to Run. Use "*" for "all", Sunday is 0 or 7, Monday is 1. (Example: "0,5") */ day_of_week?: string; /** * Cron Days Of The Month to Run. Use "*" for "all". (Example: "1,15") */ day_of_month?: string; /** * Cron Months (1-12) Of The Year to Run. Use "*" for "all". (Example: "1,12") */ month_of_year?: string; };