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