/** * 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 { AuthenticationExtensionsClientInputs } from './AuthenticationExtensionsClientInputs'; import { PublicKeyCredentialDescriptor } from './PublicKeyCredentialDescriptor'; import { UserVerificationRequirement } from './UserVerificationRequirement'; /** * WebAuthn assertion options for passkey authentication * @export * @interface MFAAuthPasskeyDeviceGetResponseAssertion */ export interface MFAAuthPasskeyDeviceGetResponseAssertion { /** * * @type {string} * @memberof MFAAuthPasskeyDeviceGetResponseAssertion */ rpId?: string; /** * * @type {string} * @memberof MFAAuthPasskeyDeviceGetResponseAssertion */ challenge: string; /** * * @type {number} * @memberof MFAAuthPasskeyDeviceGetResponseAssertion */ timeout?: number; /** * * @type {UserVerificationRequirement} * @memberof MFAAuthPasskeyDeviceGetResponseAssertion */ userVerification?: UserVerificationRequirement; /** * * @type {Array} * @memberof MFAAuthPasskeyDeviceGetResponseAssertion */ allowCredentials?: Array; /** * * @type {AuthenticationExtensionsClientInputs} * @memberof MFAAuthPasskeyDeviceGetResponseAssertion */ extensions?: AuthenticationExtensionsClientInputs; } export declare function MFAAuthPasskeyDeviceGetResponseAssertionFromJSON(json: any): MFAAuthPasskeyDeviceGetResponseAssertion; export declare function MFAAuthPasskeyDeviceGetResponseAssertionFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFAAuthPasskeyDeviceGetResponseAssertion; export declare function MFAAuthPasskeyDeviceGetResponseAssertionToJSON(value?: MFAAuthPasskeyDeviceGetResponseAssertion | null): any;