import * as z from "zod/v3"; import { PazeShippingAddress, PazeShippingAddress$Outbound } from "./pazeshippingaddress.js"; export type PazeEcomData = { /** * Whether the current transaction includes a gift card purchase. */ cartContainsGiftCard?: boolean | null | undefined; /** * Whether the consumer order will be picked up rather than shipped. */ orderForPickup?: boolean | null | undefined; /** * Dollar value of the most expensive item ordered. */ orderHighestCost?: string | null | undefined; /** * Number of items ordered. */ orderQuantity?: string | null | undefined; /** * The selected shipping address. Returned only when `shippingPreference` is not `NONE`. */ finalShippingAddress?: PazeShippingAddress | null | undefined; }; /** @internal */ export type PazeEcomData$Outbound = { cartContainsGiftCard?: boolean | null | undefined; orderForPickup?: boolean | null | undefined; orderHighestCost?: string | null | undefined; orderQuantity?: string | null | undefined; finalShippingAddress?: PazeShippingAddress$Outbound | null | undefined; }; /** @internal */ export declare const PazeEcomData$outboundSchema: z.ZodType; export declare function pazeEcomDataToJSON(pazeEcomData: PazeEcomData): string; //# sourceMappingURL=pazeecomdata.d.ts.map