GitHub

MagentoOrder

import { MagentoOrder } from '@daffodil/order/driver/magento/2-4-1'
interface MagentoOrder {
  __typename: 'GraycoreGuestOrder'
  id: string
  order_date: string
  status: string
  carrier: string
  number: string
  shipping_method: string
  email: string
  items: MagentoOrderItem[]
  billing_address: MagentoOrderAddress
  shipping_address: MagentoOrderAddress
  shipments: MagentoOrderShipment[]
  payment_methods: MagentoOrderPayment[]
  credit_memos: MagentoOrderCredit[]
  invoices: MagentoOrderInvoice[]
  total: MagentoOrderTotal
}

Properties

Name Type Description
__typename 'GraycoreGuestOrder'
id string
order_date string
status string
carrier string
number string
shipping_method string
email string
items MagentoOrderItem[]
billing_address MagentoOrderAddress
shipping_address MagentoOrderAddress
shipments MagentoOrderShipment[]
payment_methods MagentoOrderPayment[]
credit_memos MagentoOrderCredit[]
invoices MagentoOrderInvoice[]
total MagentoOrderTotal