/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DeviceRegistrationResponse } from './DeviceRegistrationResponse'; /** * * @export * @interface DeviceRegistrationsResponse */ export interface DeviceRegistrationsResponse { /** * Total number of registered devices * @type {number} * @memberof DeviceRegistrationsResponse */ count: number; /** * List of device registration objects * @type {Array} * @memberof DeviceRegistrationsResponse */ deviceRegistrations: Array; } export declare function DeviceRegistrationsResponseFromJSON(json: any): DeviceRegistrationsResponse; export declare function DeviceRegistrationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceRegistrationsResponse; export declare function DeviceRegistrationsResponseToJSON(value?: DeviceRegistrationsResponse | null): any;