_response = $response; $this->_valid = $valid; } /** * Get the response which was received from the server. * * @return string */ public function getResponse() { return $this->_response; } /** * Get the success status of this Event. * * @return boolean */ public function isValid() { return $this->_valid; } }