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 fixed price for a product. */ export type ProductPriceFixed = { /** * 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: "fixed"; /** * 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; /** * The price in cents. */ priceAmount: number; }; /** @internal */ export declare const ProductPriceFixed$inboundSchema: z.ZodMiniType; /** @internal */ export type ProductPriceFixed$Outbound = { created_at: string; modified_at: string | null; id: string; source: string; amount_type: "fixed"; price_currency: string; tax_behavior: string | null; is_archived: boolean; product_id: string; price_amount: number; }; /** @internal */ export declare const ProductPriceFixed$outboundSchema: z.ZodMiniType; export declare function productPriceFixedToJSON(productPriceFixed: ProductPriceFixed): string; export declare function productPriceFixedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=productpricefixed.d.ts.map