setSessionId($sessionId) ->setKeepAlive($keepAlive); } /** * @return string */ public function getSessionId() { return $this->sessionId; } /** * sets new sessionId * * @param string $sessionId * @return Zend_Service_DeveloperGarden_Request_VoiceButler_CallStatus */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * @return integer */ public function getKeepAlive() { return $this->keepAlive; } /** * sets new keepAlive flag * * @param integer $keepAlive * @return Zend_Service_DeveloperGarden_Request_VoiceButler_CallStatus */ public function setKeepAlive($keepAlive) { $this->keepAlive = $keepAlive; return $this; } }