You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current
ShippingInfo
export type ShippingInfo = {
__typename?: 'ShippingInfo';
shippingMethodName: Scalars['String'];
price: Money;
shippingRate: ShippingRate;
taxRate?: Maybe<TaxRate>;
deliveries: Array<Delivery>;
discountedPrice?: Maybe<DiscountedLineItemPrice>;
taxedPrice?: Maybe<TaxedItemPrice>;
shippingMethodState: ShippingMethodState;
shippingMethod?: Maybe<ShippingMethod>;
shippingMethodRef?: Maybe<Reference>;
taxCategory?: Maybe<TaxCategory>;
taxCategoryRef?: Maybe<Reference>;
};