Alokai

SelectedShippingMethod

Contains details about the selected shipping method and carrier.

type SelectedShippingMethod = {
  __typename?: 'SelectedShippingMethod'; /** The cost of shipping using this shipping method. */
  amount: Money; /** @deprecated The field should not be used on the storefront. */
  base_amount?: Maybe<Money>; /** A string that identifies a commercial carrier or an offline shipping method. */
  carrier_code: Scalars['String']['output']; /** The label for the carrier code. */
  carrier_title: Scalars['String']['output']; /** A shipping method code associated with a carrier. */
  method_code: Scalars['String']['output']; /** The label for the method code. */
  method_title: Scalars['String']['output']; /** The cost of shipping using this shipping method, excluding tax. */
  price_excl_tax: Money; /** The cost of shipping using this shipping method, including tax. */
  price_incl_tax: Money;
};

Referenced Types

On this page