/** * 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 AuthenticatorAttestationResponse */ export interface AuthenticatorAttestationResponse { /** * * @type {string} * @memberof AuthenticatorAttestationResponse */ clientDataJSON: string; /** * * @type {string} * @memberof AuthenticatorAttestationResponse */ attestationObject: string; /** * * @type {string} * @memberof AuthenticatorAttestationResponse */ authenticatorData?: string; /** * COSE algorithm identifier for the credential public key * @type {number} * @memberof AuthenticatorAttestationResponse */ publicKeyAlgorithm?: number; /** * * @type {string} * @memberof AuthenticatorAttestationResponse */ publicKey?: string; } export declare function AuthenticatorAttestationResponseFromJSON(json: any): AuthenticatorAttestationResponse; export declare function AuthenticatorAttestationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorAttestationResponse; export declare function AuthenticatorAttestationResponseToJSON(value?: AuthenticatorAttestationResponse | null): any;