/** * 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 DeviceDataPoint */ export interface DeviceDataPoint { /** * * @type {string} * @memberof DeviceDataPoint */ deviceType?: string; /** * * @type {number} * @memberof DeviceDataPoint */ eventCount?: number; /** * * @type {number} * @memberof DeviceDataPoint */ percentage?: number; } /** * Check if a given object implements the DeviceDataPoint interface. */ export declare function instanceOfDeviceDataPoint(value: object): value is DeviceDataPoint; export declare function DeviceDataPointFromJSON(json: any): DeviceDataPoint; export declare function DeviceDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceDataPoint; export declare function DeviceDataPointToJSON(json: any): DeviceDataPoint; export declare function DeviceDataPointToJSONTyped(value?: DeviceDataPoint | null, ignoreDiscriminator?: boolean): any;