/** * 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 AuthenticationExtensionsClientOutputs */ export interface AuthenticationExtensionsClientOutputs { /** * Whether the FIDO AppID extension was used during the ceremony * @type {boolean} * @memberof AuthenticationExtensionsClientOutputs */ appid?: boolean; /** * Properties of the created credential returned by the authenticator * @type {object} * @memberof AuthenticationExtensionsClientOutputs */ credProps?: object; /** * Whether an HMAC secret was successfully created * @type {boolean} * @memberof AuthenticationExtensionsClientOutputs */ hmacCreateSecret?: boolean; } export declare function AuthenticationExtensionsClientOutputsFromJSON(json: any): AuthenticationExtensionsClientOutputs; export declare function AuthenticationExtensionsClientOutputsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticationExtensionsClientOutputs; export declare function AuthenticationExtensionsClientOutputsToJSON(value?: AuthenticationExtensionsClientOutputs | null): any;