/** * 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 { AuthenticationExtensionsClientOutputs } from './AuthenticationExtensionsClientOutputs'; import { AuthenticatorAssertionResponse } from './AuthenticatorAssertionResponse'; import { AuthenticatorAttachment } from './AuthenticatorAttachment'; import { CreateMfaToken } from './CreateMfaToken'; import { PublicKeyCredentialType } from './PublicKeyCredentialType'; import { TokenScope } from './TokenScope'; /** * * @export * @interface PasskeyAuthRequest */ export interface PasskeyAuthRequest { /** * * @type {string} * @memberof PasskeyAuthRequest */ id: string; /** * * @type {string} * @memberof PasskeyAuthRequest */ rawId: string; /** * * @type {AuthenticatorAssertionResponse} * @memberof PasskeyAuthRequest */ response: AuthenticatorAssertionResponse; /** * * @type {AuthenticatorAttachment} * @memberof PasskeyAuthRequest */ authenticatorAttachment?: AuthenticatorAttachment; /** * * @type {AuthenticationExtensionsClientOutputs} * @memberof PasskeyAuthRequest */ clientExtensionResults: AuthenticationExtensionsClientOutputs; /** * * @type {PublicKeyCredentialType} * @memberof PasskeyAuthRequest */ type: PublicKeyCredentialType; /** * * @type {CreateMfaToken} * @memberof PasskeyAuthRequest */ createMfaToken?: CreateMfaToken; /** * Optional list of scopes to include in the elevated access token. * @type {Array} * @memberof PasskeyAuthRequest */ requestedScopes?: Array; } export declare function PasskeyAuthRequestFromJSON(json: any): PasskeyAuthRequest; export declare function PasskeyAuthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyAuthRequest; export declare function PasskeyAuthRequestToJSON(value?: PasskeyAuthRequest | null): any;