/** * 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 totp authenticator devices * @export * @interface TOTPDeviceRequest */ export interface TOTPDeviceRequest { /** * The human-readable name of this device. * @type {string} * @memberof TOTPDeviceRequest */ name: string; } /** * Check if a given object implements the TOTPDeviceRequest interface. */ export declare function instanceOfTOTPDeviceRequest(value: object): value is TOTPDeviceRequest; export declare function TOTPDeviceRequestFromJSON(json: any): TOTPDeviceRequest; export declare function TOTPDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TOTPDeviceRequest; export declare function TOTPDeviceRequestToJSON(json: any): TOTPDeviceRequest; export declare function TOTPDeviceRequestToJSONTyped(value?: TOTPDeviceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TOTPDeviceRequest.d.ts.map