/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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. */ /** * Payload to create and email a recovery link * @export * @interface UserRecoveryEmailRequest */ export interface UserRecoveryEmailRequest { /** * * @type {string} * @memberof UserRecoveryEmailRequest */ tokenDuration?: string; /** * * @type {string} * @memberof UserRecoveryEmailRequest */ emailStage: string; } /** * Check if a given object implements the UserRecoveryEmailRequest interface. */ export declare function instanceOfUserRecoveryEmailRequest(value: object): value is UserRecoveryEmailRequest; export declare function UserRecoveryEmailRequestFromJSON(json: any): UserRecoveryEmailRequest; export declare function UserRecoveryEmailRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserRecoveryEmailRequest; export declare function UserRecoveryEmailRequestToJSON(json: any): UserRecoveryEmailRequest; export declare function UserRecoveryEmailRequestToJSONTyped(value?: UserRecoveryEmailRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserRecoveryEmailRequest.d.ts.map