diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatusResponse.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatusResponse.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,154 @@ +return->sessionId)) { + return $this->return->sessionId; + } + return null; + } + + /** + * returns the connection time for participant a + * + * @return integer + */ + public function getConnectionTimeA() + { + if (isset($this->return->connectiontimea)) { + return $this->return->connectiontimea; + } + return null; + } + + /** + * returns the connection time for participant b + * + * @return integer + */ + public function getConnectionTimeB() + { + if (isset($this->return->connectiontimeb)) { + return $this->return->connectiontimeb; + } + return null; + } + + /** + * returns the description time for participant a + * + * @return string + */ + public function getDescriptionA() + { + if (isset($this->return->descriptiona)) { + return $this->return->descriptiona; + } + return null; + } + + /** + * returns the description time for participant b + * + * @return string + */ + public function getDescriptionB() + { + if (isset($this->return->descriptionb)) { + return $this->return->descriptionb; + } + return null; + } + + /** + * returns the reason time for participant a + * + * @return integer + */ + public function getReasonA() + { + if (isset($this->return->reasona)) { + return $this->return->reasona; + } + return null; + } + + /** + * returns the reason time for participant b + * + * @return integer + */ + public function getReasonB() + { + if (isset($this->return->reasonb)) { + return $this->return->reasonb; + } + return null; + } + + /** + * returns the state time for participant a + * + * @return string + */ + public function getStateA() + { + if (isset($this->return->statea)) { + return $this->return->statea; + } + return null; + } + + /** + * returns the state time for participant b + * + * @return string + */ + public function getStateB() + { + if (isset($this->return->stateb)) { + return $this->return->stateb; + } + return null; + } +}