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