/** * 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 TenantRequest */ export interface TenantRequest { /** * * @type {string} * @memberof TenantRequest */ schemaName: string; /** * * @type {string} * @memberof TenantRequest */ name: string; /** * * @type {boolean} * @memberof TenantRequest */ ready?: boolean; } /** * Check if a given object implements the TenantRequest interface. */ export declare function instanceOfTenantRequest(value: object): value is TenantRequest; export declare function TenantRequestFromJSON(json: any): TenantRequest; export declare function TenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRequest; export declare function TenantRequestToJSON(json: any): TenantRequest; export declare function TenantRequestToJSONTyped(value?: TenantRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRequest.d.ts.map