diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCall.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCall.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,238 @@ +aNumber; + } + + /** + * @param string $aNumber + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setANumber($aNumber) + { + $this->aNumber = $aNumber; + return $this; + } + + /** + * @return string + */ + public function getBNumber() + { + return $this->bNumber; + } + + /** + * @param string $bNumber + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setBNumber($bNumber) + { + $this->bNumber = $bNumber; + return $this; + } + + /** + * @return boolean + */ + public function getPrivacyA() + { + return $this->privacyA; + } + + /** + * @param boolean $privacyA + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setPrivacyA($privacyA) + { + $this->privacyA = $privacyA; + return $this; + } + + /** + * @return boolean + */ + public function getPrivacyB() + { + return $this->privacyB; + } + + /** + * @param boolean $privacyB + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setPrivacyB($privacyB) + { + $this->privacyB = $privacyB; + return $this; + } + + /** + * @return integer + */ + public function getExpiration() + { + return $this->expiration; + } + + /** + * @param integer $expiration + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setExpiration($expiration) + { + $this->expiration = $expiration; + return $this; + } + + /** + * @return integer + */ + public function getMaxDuration() + { + return $this->maxDuration; + } + + /** + * @param integer $maxDuration + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setMaxDuration($maxDuration) + { + $this->maxDuration = $maxDuration; + return $this; + } + + /** + * @return string + */ + public function getGreeter() + { + return $this->greeter; + } + + /** + * @param string $greeter + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setGreeter($greeter) + { + $this->greeter = $greeter; + return $this; + } + + /** + * @return string + */ + public function getAccount() + { + return $this->account; + } + + /** + * @param integer $account + * @return Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall + */ + public function setAccount($account) + { + $this->account = $account; + return $this; + } +}