import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ProductPriceSource } from "./productpricesource.js"; import { TaxBehaviorOption } from "./taxbehavioroption.js"; /** * A free price for a product. */ export type ProductPriceFree = { /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; /** * The ID of the price. */ id: string; source: ProductPriceSource; amountType: "free"; /** * The currency in which the customer will be charged. */ priceCurrency: string; /** * The tax behavior of the price. If null, it defaults to the organization's default tax behavior. */ taxBehavior: TaxBehaviorOption | null; /** * Whether the price is archived and no longer available. */ isArchived: boolean; /** * The ID of the product owning the price. */ productId: string; }; /** @internal */ export declare const ProductPriceFree$inboundSchema: z.ZodMiniType; /** @internal */ export type ProductPriceFree$Outbound = { created_at: string; modified_at: string | null; id: string; source: string; amount_type: "free"; price_currency: string; tax_behavior: string | null; is_archived: boolean; product_id: string; }; /** @internal */ export declare const ProductPriceFree$outboundSchema: z.ZodMiniType; export declare function productPriceFreeToJSON(productPriceFree: ProductPriceFree): string; export declare function productPriceFreeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=productpricefree.d.ts.map