/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * WebAuthn Challenge response * @export * @interface AuthenticatorWebAuthnChallengeResponseRequest */ export interface AuthenticatorWebAuthnChallengeResponseRequest { /** * * @type {string} * @memberof AuthenticatorWebAuthnChallengeResponseRequest */ component?: string; /** * * @type {{ [key: string]: any; }} * @memberof AuthenticatorWebAuthnChallengeResponseRequest */ response: { [key: string]: any; }; } /** * Check if a given object implements the AuthenticatorWebAuthnChallengeResponseRequest interface. */ export declare function instanceOfAuthenticatorWebAuthnChallengeResponseRequest(value: object): value is AuthenticatorWebAuthnChallengeResponseRequest; export declare function AuthenticatorWebAuthnChallengeResponseRequestFromJSON(json: any): AuthenticatorWebAuthnChallengeResponseRequest; export declare function AuthenticatorWebAuthnChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorWebAuthnChallengeResponseRequest; export declare function AuthenticatorWebAuthnChallengeResponseRequestToJSON(json: any): AuthenticatorWebAuthnChallengeResponseRequest; export declare function AuthenticatorWebAuthnChallengeResponseRequestToJSONTyped(value?: AuthenticatorWebAuthnChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorWebAuthnChallengeResponseRequest.d.ts.map