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