unmarshal static method
Implementation
static EllaDateTime unmarshal(MarshalledObject marshalled)
{
EllaDateTime model = new EllaDateTime( marshalled.getRequired("date").asObject(EllaDate.unmarshal), marshalled.getRequired("time").asObject(EllaTime.unmarshal) );
return model;
}