CreateLicenseRequestDataAttributes constructor

CreateLicenseRequestDataAttributes({
  1. String? name,
  2. String? key,
  3. DateTime? expiry,
  4. int? maxMachines,
  5. int? maxProcesses,
  6. int? maxCores,
  7. int? maxUses,
  8. bool? protected,
  9. bool? suspended,
  10. Object? metadata,
})

Returns a new CreateLicenseRequestDataAttributes instance.

Implementation

CreateLicenseRequestDataAttributes({
  this.name,
  this.key,
  this.expiry,
  this.maxMachines,
  this.maxProcesses,
  this.maxCores,
  this.maxUses,
  this.protected,
  this.suspended,
  this.metadata,
});