import { Option } from "./_commons"; /** ECommerce event */ export interface PageVisitEventECommerce { /** The type of the customer event. */ platform: string; /** The name of the customer event. */ name: string; /** A free-form JSON object representing data specific to this event provided by ECommerce platform. */ data?: Option; }