import * as z from "zod/v4-mini"; import { PresentmentCurrency } from "./presentmentcurrency.js"; import { TaxBehaviorOption } from "./taxbehavioroption.js"; /** * Schema to create a free price. */ export type ProductPriceFreeCreate = { amountType: "free"; priceCurrency?: PresentmentCurrency | undefined; /** * The tax behavior of the price. If not set, it will default to the organization's default tax behavior. */ taxBehavior?: TaxBehaviorOption | null | undefined; }; /** @internal */ export type ProductPriceFreeCreate$Outbound = { amount_type: "free"; price_currency?: string | undefined; tax_behavior?: string | null | undefined; }; /** @internal */ export declare const ProductPriceFreeCreate$outboundSchema: z.ZodMiniType; export declare function productPriceFreeCreateToJSON(productPriceFreeCreate: ProductPriceFreeCreate): string; //# sourceMappingURL=productpricefreecreate.d.ts.map