fromJson static method
Implementation
static DocumentReaderNotification? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new DocumentReaderNotification();
result.notificationCode = jsonObject["notificationCode"];
result.dataFileType = jsonObject["dataFileType"];
result.progress = jsonObject["progress"];
return result;
}