Order: Client & InteractionEvent & Source & {
    sourceLocale?: string;
    sourceUrlReferrer?: string;
    id: string;
    currency?: string;
    cartId?: string;
    webStoreId?: string;
    totalProductAmount?: number;
    adjustedTotalProductAmount?: number;
    netOrderAmount?: number;
    totalDeliveryAmount?: number;
    totalTaxAmount?: number;
}

Type declaration

  • Optional sourceLocale?: string

    Locale associated with the event.

  • Optional sourceUrlReferrer?: string

    Referrer URL of the source page.

  • id: string

    Unique ID of the order.

  • Optional currency?: string

    The currency of the order, in 3-character ISO 4217 format.

  • Optional cartId?: string

    The id of the shopping cart used for the order

  • Optional webStoreId?: string

    The web store associated with the event.

  • Optional totalProductAmount?: number

    Total amount for the products on the order, not taking into account adjustments.

  • Optional adjustedTotalProductAmount?: number

    Total adjusted (subtracting for coupons, promotions, etc.) amount for the products on the order.

  • Optional netOrderAmount?: number

    Order price excluding taxes and shipping.

  • Optional totalDeliveryAmount?: number

    Sum of all delivery charges on the order.

  • Optional totalTaxAmount?: number

    Sum of all taxes on the order.