JobCreate constructor

JobCreate({
  1. int componentTypeId,
  2. @required int assetModelId,
  3. int entityId,
  4. String externalIdentifier,
  5. String name,
  6. String description,
  7. String externalObjectType,
})

Returns a new JobCreate instance.

Implementation

JobCreate({
  this.componentTypeId,
  @required this.assetModelId,
  this.entityId,
  this.externalIdentifier,
  this.name,
  this.description,
  this.externalObjectType,
});