/** * 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. */ import type { GroupMember } from './GroupMember'; /** * Serializer for email authenticator devices * @export * @interface EmailDevice */ export interface EmailDevice { /** * The human-readable name of this device. * @type {string} * @memberof EmailDevice */ name: string; /** * * @type {number} * @memberof EmailDevice */ readonly pk: number; /** * * @type {string} * @memberof EmailDevice */ readonly email: string; /** * * @type {GroupMember} * @memberof EmailDevice */ readonly user: GroupMember; } /** * Check if a given object implements the EmailDevice interface. */ export declare function instanceOfEmailDevice(value: object): value is EmailDevice; export declare function EmailDeviceFromJSON(json: any): EmailDevice; export declare function EmailDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailDevice; export declare function EmailDeviceToJSON(json: any): EmailDevice; export declare function EmailDeviceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EmailDevice.d.ts.map