/** * 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 HourOfDayDataPoint */ export interface HourOfDayDataPoint { /** * * @type {number} * @memberof HourOfDayDataPoint */ eventCount?: number; /** * * @type {number} * @memberof HourOfDayDataPoint */ hour?: number; } /** * Check if a given object implements the HourOfDayDataPoint interface. */ export declare function instanceOfHourOfDayDataPoint(value: object): value is HourOfDayDataPoint; export declare function HourOfDayDataPointFromJSON(json: any): HourOfDayDataPoint; export declare function HourOfDayDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): HourOfDayDataPoint; export declare function HourOfDayDataPointToJSON(json: any): HourOfDayDataPoint; export declare function HourOfDayDataPointToJSONTyped(value?: HourOfDayDataPoint | null, ignoreDiscriminator?: boolean): any;