ShipmentItemInterface
Order shipment item details.
type ShipmentItemInterface = {
id: Scalars['ID']['output']; /** The order item associated with the shipment item. */
order_item?: Maybe<OrderItemInterface>; /** The name of the base product. */
product_name?: Maybe<Scalars['String']['output']>; /** The sale price for the base product. */
product_sale_price: Money; /** The SKU of the base product. */
product_sku: Scalars['String']['output']; /** The number of shipped items. */
quantity_shipped: Scalars['Float']['output'];
};