ShipmentTracking
Contains order shipment tracking details.
type ShipmentTracking = {
__typename?: 'ShipmentTracking'; /** The shipping carrier for the order delivery. */
carrier: Scalars['String']['output']; /** The tracking number of the order shipment. */
number?: Maybe<Scalars['String']['output']>; /** The shipment tracking title. */
title: Scalars['String']['output'];
};