AdminPostOrdersOrderReq constructor

AdminPostOrdersOrderReq({
  1. String? email,
  2. AddressPayload? billingAddress,
  3. AddressPayload? shippingAddress,
  4. List<LineItem>? items,
  5. String? region,
  6. List<Discount>? discounts,
  7. String? customerId,
  8. PaymentMethod? paymentMethod,
  9. ShippingMethod? shippingMethod,
  10. bool? noNotification,
})

Implementation

AdminPostOrdersOrderReq({
  this.email,
  this.billingAddress,
  this.shippingAddress,
  this.items,
  this.region,
  this.discounts,
  this.customerId,
  this.paymentMethod,
  this.shippingMethod,
  this.noNotification,
});