/** * 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 AuthenticatorAssertionResponse */ export interface AuthenticatorAssertionResponse { /** * * @type {string} * @memberof AuthenticatorAssertionResponse */ clientDataJSON: string; /** * * @type {string} * @memberof AuthenticatorAssertionResponse */ authenticatorData: string; /** * * @type {string} * @memberof AuthenticatorAssertionResponse */ signature: string; /** * Base64URL-encoded user handle returned by the authenticator * @type {string} * @memberof AuthenticatorAssertionResponse */ userHandle?: string; } export declare function AuthenticatorAssertionResponseFromJSON(json: any): AuthenticatorAssertionResponse; export declare function AuthenticatorAssertionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorAssertionResponse; export declare function AuthenticatorAssertionResponseToJSON(value?: AuthenticatorAssertionResponse | null): any;