/** * 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. */ /** * * @export * @interface DeviceRegistrationResponse */ export interface DeviceRegistrationResponse { /** * Unique identifier for the device registration * @type {string} * @memberof DeviceRegistrationResponse */ id: string; /** * Whether this registration corresponds to the requesting device * @type {boolean} * @memberof DeviceRegistrationResponse */ isCurrentDevice: boolean; /** * Browser user agent string of the registered device * @type {string} * @memberof DeviceRegistrationResponse */ userAgent?: string | null; /** * ISO 8601 timestamp of when the device was registered * @type {Date} * @memberof DeviceRegistrationResponse */ createdAt: Date; } export declare function DeviceRegistrationResponseFromJSON(json: any): DeviceRegistrationResponse; export declare function DeviceRegistrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceRegistrationResponse; export declare function DeviceRegistrationResponseToJSON(value?: DeviceRegistrationResponse | null): any;