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); } }