import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OrderPaidMetadata = { orderId: string; productId?: string | undefined; billingType?: string | undefined; amount: number; currency?: string | undefined; netAmount?: number | undefined; taxAmount?: number | undefined; appliedBalanceAmount?: number | undefined; discountAmount?: number | undefined; discountId?: string | undefined; platformFee?: number | undefined; subscriptionId?: string | undefined; recurringInterval?: string | undefined; recurringIntervalCount?: number | undefined; }; /** @internal */ export declare const OrderPaidMetadata$inboundSchema: z.ZodMiniType; export declare function orderPaidMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderpaidmetadata.d.ts.map