UpdateTrainingJobResponse.fromJson constructor

UpdateTrainingJobResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory UpdateTrainingJobResponse.fromJson(Map<String, dynamic> json) {
  return UpdateTrainingJobResponse(
    trainingJobArn: json['TrainingJobArn'] as String,
  );
}