/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/TwiML/Voice
NameSizeModeActions
Application.php29300644editdlrm
ApplicationSid.php4180644editdlrm
Autopilot.php4210644editdlrm
Client.php22930644editdlrm
Conference.php58730644editdlrm
Config.php8440644editdlrm
Connect.php22060644editdlrm
Conversation.php43640644editdlrm
Dial.php75570644editdlrm
Echo_.php3280644editdlrm
Enqueue.php21410644editdlrm
Gather.php58950644editdlrm
Hangup.php6000644editdlrm
Identity.php4400644editdlrm
Leave.php3300644editdlrm
Number.php50890644editdlrm
Parameter.php8590644editdlrm
Pause.php6320644editdlrm
Pay.php59780644editdlrm
Play.php8760644editdlrm
Prompt.php25490644editdlrm
Queue.php14120644editdlrm
Record.php35360644editdlrm
Redirect.php6820644editdlrm
Refer.php10510644editdlrm
ReferSip.php3880644editdlrm
Reject.php8950644editdlrm
Room.php8190644editdlrm
Say.php40240644editdlrm
Sim.php3780644editdlrm
Sip.php50170644editdlrm
Siprec.php13770644editdlrm
Sms.php15340644editdlrm
SsmlBreak.php9720644editdlrm
SsmlEmphasis.php32170644editdlrm
SsmlLang.php36350644editdlrm
SsmlP.php31090644editdlrm
SsmlPhoneme.php9310644editdlrm
SsmlProsody.php43270644editdlrm
SsmlS.php28940644editdlrm
SsmlSayAs.php10310644editdlrm
SsmlSub.php7940644editdlrm
SsmlW.php26710644editdlrm
Start.php13310644editdlrm
Stop.php8310644editdlrm
Stream.php21720644editdlrm
Task.php9120644editdlrm
VirtualAgent.php25720644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/TwiML/Voice/Prompt.php (2549B)
nest(new Say($message, $attributes)); } /** * Add Play child. * * @param string $url Media URL * @param array $attributes Optional attributes * @return Play Child element. */ public function play($url = null, $attributes = []): Play { return $this->nest(new Play($url, $attributes)); } /** * Add Pause child. * * @param array $attributes Optional attributes * @return Pause Child element. */ public function pause($attributes = []): Pause { return $this->nest(new Pause($attributes)); } /** * Add For_ attribute. * * @param string $for_ Name of the payment source data element */ public function setFor_($for_): self { return $this->setAttribute('for_', $for_); } /** * Add ErrorType attribute. * * @param string[] $errorType Type of error */ public function setErrorType($errorType): self { return $this->setAttribute('errorType', $errorType); } /** * Add CardType attribute. * * @param string[] $cardType Type of the credit card */ public function setCardType($cardType): self { return $this->setAttribute('cardType', $cardType); } /** * Add Attempt attribute. * * @param int[] $attempt Current attempt count */ public function setAttempt($attempt): self { return $this->setAttribute('attempt', $attempt); } /** * Add RequireMatchingInputs attribute. * * @param bool $requireMatchingInputs Require customer to input requested * information twice and verify matching. */ public function setRequireMatchingInputs($requireMatchingInputs): self { return $this->setAttribute('requireMatchingInputs', $requireMatchingInputs); } }