/* tslint:disable */
/* eslint-disable */
/**
* TeamCity REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2018.1 (current)
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* A cron expression that represents a custom schedule.
* @export
* @interface Cron
*/
export interface Cron {
/**
* The minute of the scheduled time. Supports values in the 0 - 59 range.
* @type {string}
* @memberof Cron
*/
minute?: string;
/**
* The hour of the scheduled time. Supports Integer values in the 0 - 23 range and special.
* @type {string}
* @memberof Cron
*/
hour?: string;
/**
* The day of month when the scheduled event occurs. Supports Integer values in the 1 - 31 range and special characters.
* @type {string}
* @memberof Cron
*/
day?: string;
/**
* The month when the scheduled event occurs. Supports Integer values in the 1-12 range, short month names (for example, **JAN**), and special characters.
* @type {string}
* @memberof Cron
*/
month?: string;
/**
* The day of week when the scheduled event occurs. Supports Integer values in the 1-7 range, short month names (for example, **SAT**), and special characters.
* @type {string}
* @memberof Cron
*/
dayWeek?: string;
}