ShippingInfo
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>;
};