/** * 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. */ import type { HourOfDayDataPoint } from './HourOfDayDataPoint'; /** * * @export * @interface GetHourOfDayDistributionResponse */ export interface GetHourOfDayDistributionResponse { /** * * @type {Array} * @memberof GetHourOfDayDistributionResponse */ data?: Array; /** * * @type {number} * @memberof GetHourOfDayDistributionResponse */ totalEvents?: number; } /** * Check if a given object implements the GetHourOfDayDistributionResponse interface. */ export declare function instanceOfGetHourOfDayDistributionResponse(value: object): value is GetHourOfDayDistributionResponse; export declare function GetHourOfDayDistributionResponseFromJSON(json: any): GetHourOfDayDistributionResponse; export declare function GetHourOfDayDistributionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetHourOfDayDistributionResponse; export declare function GetHourOfDayDistributionResponseToJSON(json: any): GetHourOfDayDistributionResponse; export declare function GetHourOfDayDistributionResponseToJSONTyped(value?: GetHourOfDayDistributionResponse | null, ignoreDiscriminator?: boolean): any;