BundleShipmentItem
Defines bundle product options for ShipmentItemInterface.
type BundleShipmentItem = ShipmentItemInterface & {
__typename?: 'BundleShipmentItem'; /** A list of bundle options that are assigned to a shipped product. */
bundle_options?: Maybe<Array<Maybe<ItemSelectedBundleOption>>>; /** The unique ID for a `ShipmentItemInterface` object. */
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'];
};