芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/twilio/sdk/src/Twilio/TwiML/Voice/Number.php
setAttribute('sendDigits', $sendDigits); } /** * Add Url attribute. * * @param string $url TwiML URL * @return static $this. */ public function setUrl($url) { return $this->setAttribute('url', $url); } /** * Add Method attribute. * * @param string $method TwiML URL method * @return static $this. */ public function setMethod($method) { return $this->setAttribute('method', $method); } /** * Add StatusCallbackEvent attribute. * * @param string $statusCallbackEvent Events to call status callback * @return static $this. */ public function setStatusCallbackEvent($statusCallbackEvent) { return $this->setAttribute('statusCallbackEvent', $statusCallbackEvent); } /** * Add StatusCallback attribute. * * @param string $statusCallback Status callback URL * @return static $this. */ public function setStatusCallback($statusCallback) { return $this->setAttribute('statusCallback', $statusCallback); } /** * Add StatusCallbackMethod attribute. * * @param string $statusCallbackMethod Status callback URL method * @return static $this. */ public function setStatusCallbackMethod($statusCallbackMethod) { return $this->setAttribute('statusCallbackMethod', $statusCallbackMethod); } /** * Add Byoc attribute. * * @param string $byoc BYOC trunk SID (Beta) * @return static $this. */ public function setByoc($byoc) { return $this->setAttribute('byoc', $byoc); } }