import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeTenant = { createdAt: Date; enabled: boolean; maxLiveJobs: number | null; maxLiveServices: number | null; orgId: string; updatedAt: Date; }; /** @internal */ export declare const ComputeTenant$inboundSchema: z.ZodType; /** @internal */ export type ComputeTenant$Outbound = { created_at: string; enabled: boolean; max_live_jobs: number | null; max_live_services: number | null; org_id: string; updated_at: string; }; /** @internal */ export declare const ComputeTenant$outboundSchema: z.ZodType; export declare function computeTenantToJSON(computeTenant: ComputeTenant): string; export declare function computeTenantFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computetenant.d.ts.map