|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Request/VoiceButler/VoiceButlerAbstract.php'; 00027 00036 class Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall 00037 extends Zend_Service_DeveloperGarden_Request_VoiceButler_VoiceButlerAbstract 00038 { 00044 public $aNumber = null; 00045 00051 public $bNumber = null; 00052 00058 public $privacyA = null; 00059 00065 public $privacyB = null; 00066 00072 public $expiration = null; 00073 00079 public $maxDuration = null; 00080 00086 public $greeter = null; 00087 00093 public $account = null; 00094 00098 public function getANumber() 00099 { 00100 return $this->aNumber; 00101 } 00102 00107 public function setANumber($aNumber) 00108 { 00109 $this->aNumber = $aNumber; 00110 return $this; 00111 } 00112 00116 public function getBNumber() 00117 { 00118 return $this->bNumber; 00119 } 00120 00125 public function setBNumber($bNumber) 00126 { 00127 $this->bNumber = $bNumber; 00128 return $this; 00129 } 00130 00134 public function getPrivacyA() 00135 { 00136 return $this->privacyA; 00137 } 00138 00143 public function setPrivacyA($privacyA) 00144 { 00145 $this->privacyA = $privacyA; 00146 return $this; 00147 } 00148 00152 public function getPrivacyB() 00153 { 00154 return $this->privacyB; 00155 } 00156 00161 public function setPrivacyB($privacyB) 00162 { 00163 $this->privacyB = $privacyB; 00164 return $this; 00165 } 00166 00170 public function getExpiration() 00171 { 00172 return $this->expiration; 00173 } 00174 00179 public function setExpiration($expiration) 00180 { 00181 $this->expiration = $expiration; 00182 return $this; 00183 } 00184 00188 public function getMaxDuration() 00189 { 00190 return $this->maxDuration; 00191 } 00192 00197 public function setMaxDuration($maxDuration) 00198 { 00199 $this->maxDuration = $maxDuration; 00200 return $this; 00201 } 00202 00206 public function getGreeter() 00207 { 00208 return $this->greeter; 00209 } 00210 00215 public function setGreeter($greeter) 00216 { 00217 $this->greeter = $greeter; 00218 return $this; 00219 } 00220 00224 public function getAccount() 00225 { 00226 return $this->account; 00227 } 00228 00233 public function setAccount($account) 00234 { 00235 $this->account = $account; 00236 return $this; 00237 } 00238 }