/** * 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 response serializer * @export * @interface TenantRecoveryKeyResponse */ export interface TenantRecoveryKeyResponse { /** * * @type {Date} * @memberof TenantRecoveryKeyResponse */ expiry: Date; /** * * @type {string} * @memberof TenantRecoveryKeyResponse */ url: string; } /** * Check if a given object implements the TenantRecoveryKeyResponse interface. */ export declare function instanceOfTenantRecoveryKeyResponse(value: object): value is TenantRecoveryKeyResponse; export declare function TenantRecoveryKeyResponseFromJSON(json: any): TenantRecoveryKeyResponse; export declare function TenantRecoveryKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRecoveryKeyResponse; export declare function TenantRecoveryKeyResponseToJSON(json: any): TenantRecoveryKeyResponse; export declare function TenantRecoveryKeyResponseToJSONTyped(value?: TenantRecoveryKeyResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRecoveryKeyResponse.d.ts.map