/** * 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. */ /** * Authenticator Email Challenge response, device is set by get_response_instance * @export * @interface AuthenticatorEmailChallengeResponseRequest */ export interface AuthenticatorEmailChallengeResponseRequest { /** * * @type {string} * @memberof AuthenticatorEmailChallengeResponseRequest */ component?: string; /** * * @type {number} * @memberof AuthenticatorEmailChallengeResponseRequest */ code?: number; /** * * @type {string} * @memberof AuthenticatorEmailChallengeResponseRequest */ email?: string; } /** * Check if a given object implements the AuthenticatorEmailChallengeResponseRequest interface. */ export declare function instanceOfAuthenticatorEmailChallengeResponseRequest(value: object): value is AuthenticatorEmailChallengeResponseRequest; export declare function AuthenticatorEmailChallengeResponseRequestFromJSON(json: any): AuthenticatorEmailChallengeResponseRequest; export declare function AuthenticatorEmailChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEmailChallengeResponseRequest; export declare function AuthenticatorEmailChallengeResponseRequestToJSON(json: any): AuthenticatorEmailChallengeResponseRequest; export declare function AuthenticatorEmailChallengeResponseRequestToJSONTyped(value?: AuthenticatorEmailChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorEmailChallengeResponseRequest.d.ts.map