interface ItemShippingDetails {
    targets: ItemShippingTarget[];
    valid: boolean;
}

Properties

Properties

Holds information on the quantity of Line Items or Custom Line Items and the address it is shipped.

valid: boolean
  • true if the quantity of Line Items or Custom Line Items is equal to the sum of sub-quantities defined in targets.
    • false if the quantity of Line Items or Custom Line Items is not equal to the sum of sub-quantities defined in targets. Ordering a Cart when the value is false returns an InvalidItemShippingDetails error.

Generated using TypeDoc