/** * 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 { MFAAuthPasskeyDeviceGetResponseAssertion } from './MFAAuthPasskeyDeviceGetResponseAssertion'; import { MFADeviceType } from './MFADeviceType'; /** * * @export * @interface MFAAuthPasskeyDeviceGetResponse */ export interface MFAAuthPasskeyDeviceGetResponse { /** * * @type {string} * @memberof MFAAuthPasskeyDeviceGetResponse */ id: string; /** * * @type {MFADeviceType} * @memberof MFAAuthPasskeyDeviceGetResponse */ type: MFADeviceType; /** * * @type {MFAAuthPasskeyDeviceGetResponseAssertion} * @memberof MFAAuthPasskeyDeviceGetResponse */ assertion: MFAAuthPasskeyDeviceGetResponseAssertion; } export declare function MFAAuthPasskeyDeviceGetResponseFromJSON(json: any): MFAAuthPasskeyDeviceGetResponse; export declare function MFAAuthPasskeyDeviceGetResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFAAuthPasskeyDeviceGetResponse; export declare function MFAAuthPasskeyDeviceGetResponseToJSON(value?: MFAAuthPasskeyDeviceGetResponse | null): any;