/** * 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 TimeOfDayConditionTraceRange */ export interface TimeOfDayConditionTraceRange { /** * * @type {string} * @memberof TimeOfDayConditionTraceRange */ endTime?: string; /** * * @type {boolean} * @memberof TimeOfDayConditionTraceRange */ hasRoute?: boolean; /** * * @type {string} * @memberof TimeOfDayConditionTraceRange */ id?: string; /** * * @type {string} * @memberof TimeOfDayConditionTraceRange */ name?: string; /** * * @type {string} * @memberof TimeOfDayConditionTraceRange */ startTime?: string; } /** * Check if a given object implements the TimeOfDayConditionTraceRange interface. */ export declare function instanceOfTimeOfDayConditionTraceRange(value: object): value is TimeOfDayConditionTraceRange; export declare function TimeOfDayConditionTraceRangeFromJSON(json: any): TimeOfDayConditionTraceRange; export declare function TimeOfDayConditionTraceRangeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeOfDayConditionTraceRange; export declare function TimeOfDayConditionTraceRangeToJSON(json: any): TimeOfDayConditionTraceRange; export declare function TimeOfDayConditionTraceRangeToJSONTyped(value?: TimeOfDayConditionTraceRange | null, ignoreDiscriminator?: boolean): any;