GitHub

MagentoUpdateShippingAddressWithEmailResponse

import { MagentoUpdateShippingAddressWithEmailResponse } from '@daffodil/cart/driver/magento'
interface MagentoUpdateShippingAddressWithEmailResponse {
  setShippingAddressesOnCart: MagentoGetCartResponse
  setGuestEmailOnCart: {
    __typename?: string;
    cart: {
        __typename?: string;
        email: MagentoGetCartResponse['cart']['email'];
    };
}
}

Properties

Name Type Description
setShippingAddressesOnCart MagentoGetCartResponse
setGuestEmailOnCart { __typename?: string; cart: { __typename?: string; email: MagentoGetCartResponse['cart']['email']; }; }