encode static method
Implementation
static Map<String, dynamic> encode(ShareAllPatientDataOptionsEntityResult value) {
Map<String, dynamic> entityAsMap = {
"success" : value.success,
"error" : value.error == null ? null : ShareAllPatientDataOptionsSharePatientDataError.encode(value.error!),
"modified" : value.modified
};
return entityAsMap;
}