/** * 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 { MFADeviceType } from './MFADeviceType'; import { MFARegisterPasskeyDeviceGetResponseRegistration } from './MFARegisterPasskeyDeviceGetResponseRegistration'; /** * * @export * @interface MFARegisterPasskeyDeviceGetResponse */ export interface MFARegisterPasskeyDeviceGetResponse { /** * * @type {string} * @memberof MFARegisterPasskeyDeviceGetResponse */ id: string; /** * * @type {MFADeviceType} * @memberof MFARegisterPasskeyDeviceGetResponse */ type: MFADeviceType; /** * * @type {MFARegisterPasskeyDeviceGetResponseRegistration} * @memberof MFARegisterPasskeyDeviceGetResponse */ registration: MFARegisterPasskeyDeviceGetResponseRegistration; } export declare function MFARegisterPasskeyDeviceGetResponseFromJSON(json: any): MFARegisterPasskeyDeviceGetResponse; export declare function MFARegisterPasskeyDeviceGetResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFARegisterPasskeyDeviceGetResponse; export declare function MFARegisterPasskeyDeviceGetResponseToJSON(value?: MFARegisterPasskeyDeviceGetResponse | null): any;