encode static method
Implementation
static Map<String, dynamic> encode(EmbeddedTimeTable value) {
Map<String, dynamic> entityAsMap = {
"id" : value.id,
"codes" : value.codes.map((x0) => CodeStub.encode(x0)).toList(),
"medicalLocationId" : value.medicalLocationId,
"endOfLife" : value.endOfLife,
"name" : value.name,
"startTime" : value.startTime,
"endTime" : value.endTime,
"items" : value.items.map((x0) => TimeTableItem.encode(x0)).toList()
};
return entityAsMap;
}