LabelingJobStoppingConditions.fromJson constructor

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

Implementation

factory LabelingJobStoppingConditions.fromJson(Map<String, dynamic> json) {
  return LabelingJobStoppingConditions(
    maxHumanLabeledObjectCount: json['MaxHumanLabeledObjectCount'] as int?,
    maxPercentageOfInputDatasetLabeled:
        json['MaxPercentageOfInputDatasetLabeled'] as int?,
  );
}