StopTextTranslationJobResponse.fromJson constructor

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

Implementation

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