GetTrainingJobResponse constructor

GetTrainingJobResponse({
  1. TrainingJobMetadata? metadata,
})

Implementation

factory GetTrainingJobResponse({
  TrainingJobMetadata? metadata,
}) {
  final $result = create();
  if (metadata != null) {
    $result.metadata = metadata;
  }
  return $result;
}