/** * 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 AuthenticationExtensionsClientInputs */ export interface AuthenticationExtensionsClientInputs { /** * FIDO AppID extension input for backward compatibility with U2F * @type {string} * @memberof AuthenticationExtensionsClientInputs */ appid?: string; /** * Whether to request credential properties from the authenticator * @type {boolean} * @memberof AuthenticationExtensionsClientInputs */ credProps?: boolean; /** * Whether to create an HMAC secret with the authenticator * @type {boolean} * @memberof AuthenticationExtensionsClientInputs */ hmacCreateSecret?: boolean; } export declare function AuthenticationExtensionsClientInputsFromJSON(json: any): AuthenticationExtensionsClientInputs; export declare function AuthenticationExtensionsClientInputsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticationExtensionsClientInputs; export declare function AuthenticationExtensionsClientInputsToJSON(value?: AuthenticationExtensionsClientInputs | null): any;