GetMedicalVocabularyResponse.fromJson constructor
GetMedicalVocabularyResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory GetMedicalVocabularyResponse.fromJson(Map<String, dynamic> json) {
return GetMedicalVocabularyResponse(
downloadUri: json['DownloadUri'] as String?,
failureReason: json['FailureReason'] as String?,
languageCode: (json['LanguageCode'] as String?)?.toLanguageCode(),
lastModifiedTime: timeStampFromJson(json['LastModifiedTime']),
vocabularyName: json['VocabularyName'] as String?,
vocabularyState:
(json['VocabularyState'] as String?)?.toVocabularyState(),
);
}