GitHub

MagentoGetCustomerOrderResponse

import { MagentoGetCustomerOrderResponse } from '@daffodil/customer-order/driver/magento/2-4-6'
interface MagentoGetCustomerOrderResponse {
  customer: {
    email: string;
    orders: {
        items: [MagentoCustomerOrder];
    };
}
}

Properties

Name Type Description
customer { email: string; orders: { items: [MagentoCustomerOrder]; }; }