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