ReimbursementDto constructor

ReimbursementDto({
  1. int? from,
  2. int? to,
  3. ReimbursementDtoDeliveryEnvironmentEnum? deliveryEnvironment,
  4. String? code,
  5. ReimbursementDtoCodeTypeEnum? codeType,
  6. ReimbursementDtoMultipleEnum? multiple,
  7. bool? temporary,
  8. bool? reference,
  9. String? legalReferencePath,
  10. bool? flatRateSystem,
  11. num? reimbursementBasePrice,
  12. num? referenceBasePrice,
  13. num? copaymentSupplement,
  14. PricingDto? pricingUnit,
  15. PricingDto? pricingSlice,
  16. ReimbursementCriterionDto? reimbursementCriterion,
  17. List<CopaymentDto> copayments = const [],
})

Returns a new ReimbursementDto instance.

Implementation

ReimbursementDto({
  this.from,
  this.to,
  this.deliveryEnvironment,
  this.code,
  this.codeType,
  this.multiple,
  this.temporary,
  this.reference,
  this.legalReferencePath,
  this.flatRateSystem,
  this.reimbursementBasePrice,
  this.referenceBasePrice,
  this.copaymentSupplement,
  this.pricingUnit,
  this.pricingSlice,
  this.reimbursementCriterion,
  this.copayments = const [],
});