PrintifyOrderRequest constructor

PrintifyOrderRequest({
  1. String? external_id,
  2. String? label,
  3. List<PrintifyOrderLineItem>? line_items,
  4. int? shipping_method,
  5. bool? send_shipping_notification,
  6. PrintifyAddress? address_to,
})

This resource could be used, to create a new order

Implementation

PrintifyOrderRequest({
  this.external_id,
  this.label,
  this.line_items,
  this.shipping_method,
  this.send_shipping_notification,
  this.address_to,
});