/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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 ShiftsInterval */ export interface ShiftsInterval { /** * * @type {Date} * @memberof ShiftsInterval */ startTime: Date; /** * * @type {Date} * @memberof ShiftsInterval */ endTime: Date; } /** * Check if a given object implements the ShiftsInterval interface. */ export declare function instanceOfShiftsInterval(value: object): value is ShiftsInterval; export declare function ShiftsIntervalFromJSON(json: any): ShiftsInterval; export declare function ShiftsIntervalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShiftsInterval; export declare function ShiftsIntervalToJSON(value?: ShiftsInterval | null): any;