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