AvailableShippingMethod
Contains details about the possible shipping methods and carriers.
type AvailableShippingMethod = {
__typename?: 'AvailableShippingMethod'; /** The cost of shipping using this shipping method. */
amount: Money; /** Indicates whether this shipping method can be applied to the cart. */
available: Scalars['Boolean']['output']; /** @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']; /** Describes an error condition. */
error_message?: Maybe<Scalars['String']['output']>; /** A shipping method code associated with a carrier. The value could be null if no method is available. */
method_code?: Maybe<Scalars['String']['output']>; /** The label for the shipping method code. The value could be null if no method is available. */
method_title?: Maybe<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;
};