GitHub

MagentoGetSelectedShippingMethodResponse

import { MagentoGetSelectedShippingMethodResponse } from '@daffodil/cart/driver/magento'
interface MagentoGetSelectedShippingMethodResponse {
  cart: {
    __typename: string;
    shipping_addresses: {
        __typename: string;
        selected_shipping_method: MagentoCartShippingMethod;
    }[];
}
}

Properties

Name Type Description
cart { __typename: string; shipping_addresses: { __typename: string; selected_shipping_method: MagentoCartShippingMethod; }[]; }