A ShipmentItem represents an item in a Shipment.
Shipments may have multiple shipment items.
Properties
Name | Type | Description |
---|---|---|
Id | int | The ID of the shipment item. |
ShipmentId | int | The ID of the shipment that the shipment item belongs to. |
OrderId | int | The ID of the order that the shipment item belongs to. |
Order (via $expand) | Order | The order that the shipment item corresponds to. |
ItemId | int | The ID of the item that the shipment item corresponds to. |
Item (via $expand) | Item | The item that the shipment item corresponds to. |
Quantity | int | The quantity of the shipment item. |
Weight | decimal(18,4) | The weight of the shipment item, in pounds. |