fromJson static method
Implementation
static DocumentReaderRfidOrigin? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new DocumentReaderRfidOrigin();
result.dg = jsonObject["dg"];
result.dgTag = jsonObject["dgTag"];
result.entryView = jsonObject["entryView"];
result.tagEntry = jsonObject["tagEntry"];
return result;
}