import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Fixed recurring amount paid in the billing period regardless of usage. */ export type MonthlyPlatformFee = { /** * 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 MonthlyPlatformFee$inboundSchema: z.ZodType; /** @internal */ export type MonthlyPlatformFee$Outbound = { currency: string; valueDecimal: string; }; /** @internal */ export declare const MonthlyPlatformFee$outboundSchema: z.ZodType; export declare function monthlyPlatformFeeToJSON(monthlyPlatformFee: MonthlyPlatformFee): string; export declare function monthlyPlatformFeeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=monthlyplatformfee.d.ts.map