OrderLineItem constructor

OrderLineItem({
  1. List<OrderLineItemAdjustment>? adjustments,
  2. List<OrderMerchantProvidedAnnotation>? annotations,
  3. List<OrderCancellation>? cancellations,
  4. String? id,
  5. Price? price,
  6. OrderLineItemProduct? product,
  7. int? quantityCanceled,
  8. int? quantityDelivered,
  9. int? quantityOrdered,
  10. int? quantityPending,
  11. int? quantityReadyForPickup,
  12. int? quantityReturned,
  13. int? quantityShipped,
  14. int? quantityUndeliverable,
  15. OrderLineItemReturnInfo? returnInfo,
  16. List<OrderReturn>? returns,
  17. OrderLineItemShippingDetails? shippingDetails,
  18. Price? tax,
})

Implementation

OrderLineItem({
  this.adjustments,
  this.annotations,
  this.cancellations,
  this.id,
  this.price,
  this.product,
  this.quantityCanceled,
  this.quantityDelivered,
  this.quantityOrdered,
  this.quantityPending,
  this.quantityReadyForPickup,
  this.quantityReturned,
  this.quantityShipped,
  this.quantityUndeliverable,
  this.returnInfo,
  this.returns,
  this.shippingDetails,
  this.tax,
});