_id = (int) $data->id; $this->_fullName = $data->fullname; $this->_username = $data->username; } /** * Returns the identifier for the contact. * * @return int */ public function getId() { return $this->_id; } /** * Returns the full name of the contact. * * @return string */ public function getFullName() { return $this->_fullName; } /** * Returns the username for the contact * * @return string */ public function getUsername() { return $this->_username; } }