$this->_name, "Value" => $this->_value, "UserId" => $this->_userId ); } /** * @var string */ protected $_name; public function getName() { return $this->_name; } public function setName($value) { $this->_name = $value; } /** * @var boolean */ protected $_value; public function getValue() { return $this->_value; } public function setValue($value) { $this->_value = $value; } /** * @var integer */ protected $_userId; public function getUserId() { return $this->_userId; } public function setUserId($value) { $this->_userId = $value; } }