@veloceapps/api 3.1.26 → 3.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -804,7 +804,7 @@
804
804
  }());
805
805
 
806
806
  var RecommendedPriceDTO = /** @class */ (function () {
807
- function RecommendedPriceDTO(netPrice, listPrice, chargeType, chargeMethod, explanation, frequencyDuration, frequencyUnit) {
807
+ function RecommendedPriceDTO(netPrice, listPrice, chargeType, chargeMethod, explanation, frequencyDuration, frequencyUnit, properties) {
808
808
  this.netPrice = netPrice;
809
809
  this.listPrice = listPrice;
810
810
  this.chargeType = chargeType;
@@ -812,6 +812,7 @@
812
812
  this.explanation = explanation;
813
813
  this.frequencyDuration = frequencyDuration;
814
814
  this.frequencyUnit = frequencyUnit;
815
+ this.properties = properties;
815
816
  }
816
817
  RecommendedPriceDTO.fromDTO = function (dto) {
817
818
  return {
@@ -822,6 +823,7 @@
822
823
  frequencyUnit: dto.frequencyUnit,
823
824
  frequencyDuration: dto.frequencyDuration,
824
825
  explanation: dto.explanation,
826
+ properties: dto.properties,
825
827
  };
826
828
  };
827
829
  return RecommendedPriceDTO;