unmarshal static method

EllaDateTime unmarshal(
  1. MarshalledObject marshalled
)

Implementation

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