/** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * 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 FacilityDisplayOperatingScheduleTime */ export interface FacilityDisplayOperatingScheduleTime { /** * * @type {number} * @memberof FacilityDisplayOperatingScheduleTime */ hour: number; /** * * @type {number} * @memberof FacilityDisplayOperatingScheduleTime */ minute: number; } /** * Check if a given object implements the FacilityDisplayOperatingScheduleTime interface. */ export declare function instanceOfFacilityDisplayOperatingScheduleTime(value: object): value is FacilityDisplayOperatingScheduleTime; export declare function FacilityDisplayOperatingScheduleTimeFromJSON(json: any): FacilityDisplayOperatingScheduleTime; export declare function FacilityDisplayOperatingScheduleTimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): FacilityDisplayOperatingScheduleTime; export declare function FacilityDisplayOperatingScheduleTimeToJSON(value?: FacilityDisplayOperatingScheduleTime | null): any;