MerchantOrderReturn constructor

MerchantOrderReturn({
  1. String? creationDate,
  2. String? merchantOrderId,
  3. String? orderId,
  4. String? orderReturnId,
  5. List<MerchantOrderReturnItem>? returnItems,
  6. ReturnPricingInfo? returnPricingInfo,
  7. List<ReturnShipment>? returnShipments,
})

Implementation

MerchantOrderReturn({
  this.creationDate,
  this.merchantOrderId,
  this.orderId,
  this.orderReturnId,
  this.returnItems,
  this.returnPricingInfo,
  this.returnShipments,
});