/** * 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 { DeviceDataPoint } from './DeviceDataPoint'; /** * * @export * @interface GetDeviceDistributionResponse */ export interface GetDeviceDistributionResponse { /** * * @type {Array} * @memberof GetDeviceDistributionResponse */ data?: Array; /** * * @type {number} * @memberof GetDeviceDistributionResponse */ totalEvents?: number; } /** * Check if a given object implements the GetDeviceDistributionResponse interface. */ export declare function instanceOfGetDeviceDistributionResponse(value: object): value is GetDeviceDistributionResponse; export declare function GetDeviceDistributionResponseFromJSON(json: any): GetDeviceDistributionResponse; export declare function GetDeviceDistributionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetDeviceDistributionResponse; export declare function GetDeviceDistributionResponseToJSON(json: any): GetDeviceDistributionResponse; export declare function GetDeviceDistributionResponseToJSONTyped(value?: GetDeviceDistributionResponse | null, ignoreDiscriminator?: boolean): any;