TrainingJobStatusCounters constructor

TrainingJobStatusCounters({
  1. int? completed,
  2. int? inProgress,
  3. int? nonRetryableError,
  4. int? retryableError,
  5. int? stopped,
})

Implementation

TrainingJobStatusCounters({
  this.completed,
  this.inProgress,
  this.nonRetryableError,
  this.retryableError,
  this.stopped,
});