import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AutoReplenishConfig } from "./autoreplenishconfig.js"; import { CreditExpiration } from "./creditexpiration.js"; export type OrganizationCredits = { autoReplenishConfig: AutoReplenishConfig; /** * The current credit balance for the organization. */ balance: number; /** * The credit expirations for the organization. */ creditExpirations: Array | null; /** * The ID of a Censys organization. */ uid: string; }; /** @internal */ export declare const OrganizationCredits$inboundSchema: z.ZodType; export declare function organizationCreditsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organizationcredits.d.ts.map