/** * 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 PatchedTOTPDeviceRequest */ export interface PatchedTOTPDeviceRequest { /** * The human-readable name of this device. * @type {string} * @memberof PatchedTOTPDeviceRequest */ name?: string; } /** * Check if a given object implements the PatchedTOTPDeviceRequest interface. */ export declare function instanceOfPatchedTOTPDeviceRequest(value: object): value is PatchedTOTPDeviceRequest; export declare function PatchedTOTPDeviceRequestFromJSON(json: any): PatchedTOTPDeviceRequest; export declare function PatchedTOTPDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedTOTPDeviceRequest; export declare function PatchedTOTPDeviceRequestToJSON(json: any): PatchedTOTPDeviceRequest; export declare function PatchedTOTPDeviceRequestToJSONTyped(value?: PatchedTOTPDeviceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedTOTPDeviceRequest.d.ts.map