/** And item that is part of a shipment */
export interface ShipmentItem {
  /** Sku of the item */
  sku?: string;
  /** Quantity of the item */
  quantity?: number;
}
