/** * 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. */ /** * Serializer for WebAuthn authenticator devices * @export * @interface WebAuthnDeviceRequest */ export interface WebAuthnDeviceRequest { /** * * @type {string} * @memberof WebAuthnDeviceRequest */ name: string; } /** * Check if a given object implements the WebAuthnDeviceRequest interface. */ export declare function instanceOfWebAuthnDeviceRequest(value: object): value is WebAuthnDeviceRequest; export declare function WebAuthnDeviceRequestFromJSON(json: any): WebAuthnDeviceRequest; export declare function WebAuthnDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebAuthnDeviceRequest; export declare function WebAuthnDeviceRequestToJSON(json: any): WebAuthnDeviceRequest; export declare function WebAuthnDeviceRequestToJSONTyped(value?: WebAuthnDeviceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WebAuthnDeviceRequest.d.ts.map