import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TenantUpsert = { /** * Optional metadata to store with the tenant. */ metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const TenantUpsert$inboundSchema: z.ZodType; /** @internal */ export type TenantUpsert$Outbound = { metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const TenantUpsert$outboundSchema: z.ZodType; export declare function tenantUpsertToJSON(tenantUpsert: TenantUpsert): string; export declare function tenantUpsertFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tenantupsert.d.ts.map