ReservedNode constructor

ReservedNode({
  1. String? currencyCode,
  2. int? duration,
  3. double? fixedPrice,
  4. int? nodeCount,
  5. String? nodeType,
  6. String? offeringType,
  7. List<RecurringCharge>? recurringCharges,
  8. String? reservedNodeId,
  9. String? reservedNodeOfferingId,
  10. ReservedNodeOfferingType? reservedNodeOfferingType,
  11. DateTime? startTime,
  12. String? state,
  13. double? usagePrice,
})

Implementation

ReservedNode({
  this.currencyCode,
  this.duration,
  this.fixedPrice,
  this.nodeCount,
  this.nodeType,
  this.offeringType,
  this.recurringCharges,
  this.reservedNodeId,
  this.reservedNodeOfferingId,
  this.reservedNodeOfferingType,
  this.startTime,
  this.state,
  this.usagePrice,
});