BillingRate constructor

BillingRate({
  1. String? currencyCode,
  2. String? endDate,
  3. String? id,
  4. String? name,
  5. String? rateInMicros,
  6. String? startDate,
  7. List<BillingRateTieredRate>? tieredRates,
  8. String? type,
  9. String? unitOfMeasure,
})

Implementation

BillingRate({
  this.currencyCode,
  this.endDate,
  this.id,
  this.name,
  this.rateInMicros,
  this.startDate,
  this.tieredRates,
  this.type,
  this.unitOfMeasure,
});