/** * 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 a recovery link * @export * @interface UserRecoveryLinkRequest */ export interface UserRecoveryLinkRequest { /** * * @type {string} * @memberof UserRecoveryLinkRequest */ tokenDuration?: string; } /** * Check if a given object implements the UserRecoveryLinkRequest interface. */ export declare function instanceOfUserRecoveryLinkRequest(value: object): value is UserRecoveryLinkRequest; export declare function UserRecoveryLinkRequestFromJSON(json: any): UserRecoveryLinkRequest; export declare function UserRecoveryLinkRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserRecoveryLinkRequest; export declare function UserRecoveryLinkRequestToJSON(json: any): UserRecoveryLinkRequest; export declare function UserRecoveryLinkRequestToJSONTyped(value?: UserRecoveryLinkRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserRecoveryLinkRequest.d.ts.map