import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference. */ export type MinimumCommitment = { /** * A 3-letter ISO 4217 currency code. */ currency: string; /** * A decimal-formatted numerical string that represents up to 9 decimal place precision. * * @remarks * * For example, $12.987654321 is '12.987654321'. */ valueDecimal: string; }; /** @internal */ export declare const MinimumCommitment$inboundSchema: z.ZodType; /** @internal */ export type MinimumCommitment$Outbound = { currency: string; valueDecimal: string; }; /** @internal */ export declare const MinimumCommitment$outboundSchema: z.ZodType; export declare function minimumCommitmentToJSON(minimumCommitment: MinimumCommitment): string; export declare function minimumCommitmentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=minimumcommitment.d.ts.map