/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
TwiML
/
Voice
/
/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/TwiML/Voice
mkdir
upload
Name
Size
Mode
Actions
Autopilot.php
421
0644
edit
dl
rm
Client.php
2395
0644
edit
dl
rm
Conference.php
5673
0644
edit
dl
rm
Connect.php
1678
0644
edit
dl
rm
Dial.php
6109
0644
edit
dl
rm
Echo.php
328
0644
edit
dl
rm
Enqueue.php
2015
0644
edit
dl
rm
Gather.php
6060
0644
edit
dl
rm
Hangup.php
333
0644
edit
dl
rm
Identity.php
440
0644
edit
dl
rm
Leave.php
330
0644
edit
dl
rm
Number.php
2370
0644
edit
dl
rm
Parameter.php
910
0644
edit
dl
rm
Pause.php
660
0644
edit
dl
rm
Pay.php
6386
0644
edit
dl
rm
Play.php
927
0644
edit
dl
rm
Prompt.php
2242
0644
edit
dl
rm
Queue.php
1509
0644
edit
dl
rm
Record.php
3762
0644
edit
dl
rm
Redirect.php
710
0644
edit
dl
rm
Refer.php
1092
0644
edit
dl
rm
ReferSip.php
388
0644
edit
dl
rm
Reject.php
656
0644
edit
dl
rm
Room.php
847
0644
edit
dl
rm
Say.php
4036
0644
edit
dl
rm
Sim.php
378
0644
edit
dl
rm
Sip.php
2298
0644
edit
dl
rm
Siprec.php
1445
0644
edit
dl
rm
Sms.php
1654
0644
edit
dl
rm
SsmlBreak.php
1023
0644
edit
dl
rm
SsmlEmphasis.php
735
0644
edit
dl
rm
SsmlLang.php
723
0644
edit
dl
rm
SsmlP.php
384
0644
edit
dl
rm
SsmlPhoneme.php
982
0644
edit
dl
rm
SsmlProsody.php
1461
0644
edit
dl
rm
SsmlS.php
384
0644
edit
dl
rm
SsmlSayAs.php
1068
0644
edit
dl
rm
SsmlSub.php
822
0644
edit
dl
rm
SsmlW.php
800
0644
edit
dl
rm
Start.php
1376
0644
edit
dl
rm
Stop.php
825
0644
edit
dl
rm
Stream.php
1704
0644
edit
dl
rm
Task.php
963
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/TwiML/Voice/Gather.php
(6060B)
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\TwiML\Voice; use Twilio\TwiML\TwiML; class Gather extends TwiML { /** * Gather constructor. * * @param array $attributes Optional attributes */ public function __construct($attributes = array()) { parent::__construct('Gather', null, $attributes); } /** * Add Say child. * * @param string $message Message to say * @param array $attributes Optional attributes * @return Say Child element. */ public function say($message, $attributes = array()) { return $this->nest(new Say($message, $attributes)); } /** * Add Pause child. * * @param array $attributes Optional attributes * @return Pause Child element. */ public function pause($attributes = array()) { return $this->nest(new Pause($attributes)); } /** * Add Play child. * * @param string $url Media URL * @param array $attributes Optional attributes * @return Play Child element. */ public function play($url = null, $attributes = array()) { return $this->nest(new Play($url, $attributes)); } /** * Add Input attribute. * * @param string $input Input type Twilio should accept * @return static $this. */ public function setInput($input) { return $this->setAttribute('input', $input); } /** * Add Action attribute. * * @param string $action Action URL * @return static $this. */ public function setAction($action) { return $this->setAttribute('action', $action); } /** * Add Method attribute. * * @param string $method Action URL method * @return static $this. */ public function setMethod($method) { return $this->setAttribute('method', $method); } /** * Add Timeout attribute. * * @param int $timeout Time to wait to gather input * @return static $this. */ public function setTimeout($timeout) { return $this->setAttribute('timeout', $timeout); } /** * Add SpeechTimeout attribute. * * @param string $speechTimeout Time to wait to gather speech input and it * should be either auto or a positive integer. * @return static $this. */ public function setSpeechTimeout($speechTimeout) { return $this->setAttribute('speechTimeout', $speechTimeout); } /** * Add MaxSpeechTime attribute. * * @param int $maxSpeechTime Max allowed time for speech input * @return static $this. */ public function setMaxSpeechTime($maxSpeechTime) { return $this->setAttribute('maxSpeechTime', $maxSpeechTime); } /** * Add ProfanityFilter attribute. * * @param bool $profanityFilter Profanity Filter on speech * @return static $this. */ public function setProfanityFilter($profanityFilter) { return $this->setAttribute('profanityFilter', $profanityFilter); } /** * Add FinishOnKey attribute. * * @param string $finishOnKey Finish gather on key * @return static $this. */ public function setFinishOnKey($finishOnKey) { return $this->setAttribute('finishOnKey', $finishOnKey); } /** * Add NumDigits attribute. * * @param int $numDigits Number of digits to collect * @return static $this. */ public function setNumDigits($numDigits) { return $this->setAttribute('numDigits', $numDigits); } /** * Add PartialResultCallback attribute. * * @param string $partialResultCallback Partial result callback URL * @return static $this. */ public function setPartialResultCallback($partialResultCallback) { return $this->setAttribute('partialResultCallback', $partialResultCallback); } /** * Add PartialResultCallbackMethod attribute. * * @param string $partialResultCallbackMethod Partial result callback URL method * @return static $this. */ public function setPartialResultCallbackMethod($partialResultCallbackMethod) { return $this->setAttribute('partialResultCallbackMethod', $partialResultCallbackMethod); } /** * Add Language attribute. * * @param string $language Language to use * @return static $this. */ public function setLanguage($language) { return $this->setAttribute('language', $language); } /** * Add Hints attribute. * * @param string $hints Speech recognition hints * @return static $this. */ public function setHints($hints) { return $this->setAttribute('hints', $hints); } /** * Add BargeIn attribute. * * @param bool $bargeIn Stop playing media upon speech * @return static $this. */ public function setBargeIn($bargeIn) { return $this->setAttribute('bargeIn', $bargeIn); } /** * Add Debug attribute. * * @param bool $debug Allow debug for gather * @return static $this. */ public function setDebug($debug) { return $this->setAttribute('debug', $debug); } /** * Add ActionOnEmptyResult attribute. * * @param bool $actionOnEmptyResult Force webhook to the action URL event if * there is no input * @return static $this. */ public function setActionOnEmptyResult($actionOnEmptyResult) { return $this->setAttribute('actionOnEmptyResult', $actionOnEmptyResult); } /** * Add SpeechModel attribute. * * @param string $speechModel Specify the model that is best suited for your * use case * @return static $this. */ public function setSpeechModel($speechModel) { return $this->setAttribute('speechModel', $speechModel); } }
Save
cmd:
run