An object representing a "row" in a shipment. Each item is linked to an OrderItem.
Property | Type | Description |
---|---|---|
uid | integer | The unique indentifier of the shipment item. |
shipment | integer | The unique identifier of the Shipment this item is part of. |
orderItem | integer | The unique identifier of contained OrderItem. |
quantity | number | The contained quantity. |
Fetches information about a shipment item.
Parameter | Description |
---|---|
uid | The unique identifier of an existing shipment item. |
query | What to return; defaults to uid . See Query language. |
ShipmentItem.get(1234567, [
"uid",
"shipment",
"orderItem",
"quantity"
])