/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 TimeOfDayRange */ export interface TimeOfDayRange { /** * End time in 24-hour format (HH:MM) * @type {string} * @memberof TimeOfDayRange */ endTime?: string; /** * * @type {string} * @memberof TimeOfDayRange */ id?: string; /** * * @type {string} * @memberof TimeOfDayRange */ name?: string; /** * * @type {string} * @memberof TimeOfDayRange */ nextStepId?: string; /** * Start time in 24-hour format (HH:MM) * @type {string} * @memberof TimeOfDayRange */ startTime?: string; } /** * Check if a given object implements the TimeOfDayRange interface. */ export declare function instanceOfTimeOfDayRange(value: object): value is TimeOfDayRange; export declare function TimeOfDayRangeFromJSON(json: any): TimeOfDayRange; export declare function TimeOfDayRangeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeOfDayRange; export declare function TimeOfDayRangeToJSON(json: any): TimeOfDayRange; export declare function TimeOfDayRangeToJSONTyped(value?: TimeOfDayRange | null, ignoreDiscriminator?: boolean): any;