GitHub

MagentoUpdateBillingAddressWithEmailResponse

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

Properties

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