mtv\models\Model::from_json PHP Method

from_json() public static method

Create a new model from json data sent over the wire
public static from_json ( &$data )
    public static function from_json(&$data)
    {
        $class = get_called_class();
        $obj = new $class();
        $obj->set_from_json($data);
        return $obj;
    }