# ShipmentItem

An object representing a "row" in a shipment. Each item is linked to an OrderItem.

# Properties

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.

# Methods

# get

Fetches information about a shipment item.

# Parameters

Parameter Description
uid The unique identifier of an existing shipment item.
query What to return; defaults to uid. See Query language.

# Example

ShipmentItem.get(1234567, [
  "uid",
  "shipment",
  "orderItem",
  "quantity"
])