/home/desid573/public_html/app/twilio-php-master/Twilio/TwiML/Voice
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/TwiML/Voice/Enqueue.php (2026B)
nest(new Voice\Task($body, $attributes));
}
/**
* Add Action attribute.
*
* @param url $action Action URL
* @return TwiML $this.
*/
public function setAction($action) {
return $this->setAttribute('action', $action);
}
/**
* Add Method attribute.
*
* @param httpMethod $method Action URL method
* @return TwiML $this.
*/
public function setMethod($method) {
return $this->setAttribute('method', $method);
}
/**
* Add WaitUrl attribute.
*
* @param url $waitUrl Wait URL
* @return TwiML $this.
*/
public function setWaitUrl($waitUrl) {
return $this->setAttribute('waitUrl', $waitUrl);
}
/**
* Add WaitUrlMethod attribute.
*
* @param httpMethod $waitUrlMethod Wait URL method
* @return TwiML $this.
*/
public function setWaitUrlMethod($waitUrlMethod) {
return $this->setAttribute('waitUrlMethod', $waitUrlMethod);
}
/**
* Add WorkflowSid attribute.
*
* @param string $workflowSid TaskRouter Workflow SID
* @return TwiML $this.
*/
public function setWorkflowSid($workflowSid) {
return $this->setAttribute('workflowSid', $workflowSid);
}
}