/** * 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. */ /** * Tenant recovery key creation request serializer * @export * @interface TenantRecoveryKeyRequestRequest */ export interface TenantRecoveryKeyRequestRequest { /** * * @type {string} * @memberof TenantRecoveryKeyRequestRequest */ user: string; /** * * @type {number} * @memberof TenantRecoveryKeyRequestRequest */ durationDays: number; } /** * Check if a given object implements the TenantRecoveryKeyRequestRequest interface. */ export declare function instanceOfTenantRecoveryKeyRequestRequest(value: object): value is TenantRecoveryKeyRequestRequest; export declare function TenantRecoveryKeyRequestRequestFromJSON(json: any): TenantRecoveryKeyRequestRequest; export declare function TenantRecoveryKeyRequestRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRecoveryKeyRequestRequest; export declare function TenantRecoveryKeyRequestRequestToJSON(json: any): TenantRecoveryKeyRequestRequest; export declare function TenantRecoveryKeyRequestRequestToJSONTyped(value?: TenantRecoveryKeyRequestRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRecoveryKeyRequestRequest.d.ts.map