GitHub

MagentoCartAddressInput

import { MagentoCartAddressInput } from '@daffodil/cart/driver/magento'

interface MagentoCartAddressInput {
  city: string
  company: string
  country_code: string
  firstname: string
  lastname: string
  postcode: string
  region_id: number
  save_in_address_book: boolean
  street: string[]
  telephone: string
}