/** * 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 DeleteDeviceRegistrationResponse */ export interface DeleteDeviceRegistrationResponse { /** * Whether the current device was among the revoked devices. If true, the client should log out the user. * @type {boolean} * @memberof DeleteDeviceRegistrationResponse */ currentDeviceRevoked: boolean; } export declare function DeleteDeviceRegistrationResponseFromJSON(json: any): DeleteDeviceRegistrationResponse; export declare function DeleteDeviceRegistrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteDeviceRegistrationResponse; export declare function DeleteDeviceRegistrationResponseToJSON(value?: DeleteDeviceRegistrationResponse | null): any;