StopEntitiesDetectionJobResponse.fromJson constructor

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

Implementation

factory StopEntitiesDetectionJobResponse.fromJson(Map<String, dynamic> json) {
  return StopEntitiesDetectionJobResponse(
    jobId: json['JobId'] as String?,
    jobStatus: (json['JobStatus'] as String?)?.toJobStatus(),
  );
}