/** * 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 Serializer * @export * @interface Tenant */ export interface Tenant { /** * * @type {string} * @memberof Tenant */ readonly tenantUuid: string; /** * * @type {string} * @memberof Tenant */ schemaName: string; /** * * @type {string} * @memberof Tenant */ name: string; /** * * @type {boolean} * @memberof Tenant */ ready?: boolean; } /** * Check if a given object implements the Tenant interface. */ export declare function instanceOfTenant(value: object): value is Tenant; export declare function TenantFromJSON(json: any): Tenant; export declare function TenantFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tenant; export declare function TenantToJSON(json: any): Tenant; export declare function TenantToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Tenant.d.ts.map