/src/Twilio/Rest/Api/V2010/Account/CallOptions.php

http://github.com/twilio/twilio-php · PHP · 899 lines · 299 code · 64 blank · 536 comment · 0 complexity · 5cc228d77923bdf1c101240e078637d7 MD5 · raw file

Large files are truncated click here to view the full file

  1. <?php
  2. /**
  3. * This code was generated by
  4. * \ / _ _ _| _ _
  5. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  6. * / /
  7. */
  8. namespace Twilio\Rest\Api\V2010\Account;
  9. use Twilio\Options;
  10. use Twilio\Values;
  11. abstract class CallOptions {
  12. /**
  13. * @param string $url The absolute URL that returns TwiML for this call
  14. * @param string $twiml TwiML instructions for the call
  15. * @param string $applicationSid The SID of the Application resource that will
  16. * handle the call
  17. * @param string $method HTTP method to use to fetch TwiML
  18. * @param string $fallbackUrl Fallback URL in case of error
  19. * @param string $fallbackMethod HTTP Method to use with fallback_url
  20. * @param string $statusCallback The URL we should call to send status
  21. * information to your application
  22. * @param string[] $statusCallbackEvent The call progress events that we send
  23. * to the `status_callback` URL.
  24. * @param string $statusCallbackMethod HTTP Method to use with status_callback
  25. * @param string $sendDigits The digits to dial after connecting to the number
  26. * @param int $timeout Number of seconds to wait for an answer
  27. * @param bool $record Whether to record the call
  28. * @param string $recordingChannels The number of channels in the final
  29. * recording
  30. * @param string $recordingStatusCallback The URL that we call when the
  31. * recording is available to be accessed
  32. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  33. * when calling the
  34. * `recording_status_callback` URL
  35. * @param string $sipAuthUsername The username used to authenticate the caller
  36. * making a SIP call
  37. * @param string $sipAuthPassword The password required to authenticate the
  38. * user account specified in `sip_auth_username`.
  39. * @param string $machineDetection Enable machine detection or end of greeting
  40. * detection
  41. * @param int $machineDetectionTimeout Number of seconds to wait for machine
  42. * detection
  43. * @param string[] $recordingStatusCallbackEvent The recording status events
  44. * that will trigger calls to the
  45. * URL specified in
  46. * `recording_status_callback`
  47. * @param string $trim Set this parameter to control trimming of silence on the
  48. * recording.
  49. * @param string $callerId The phone number, SIP address, or Client identifier
  50. * that made this call. Phone numbers are in E.164
  51. * format (e.g., +16175551212). SIP addresses are
  52. * formatted as `name@company.com`.
  53. * @param int $machineDetectionSpeechThreshold Number of milliseconds for
  54. * measuring stick for the length
  55. * of the speech activity
  56. * @param int $machineDetectionSpeechEndThreshold Number of milliseconds of
  57. * silence after speech activity
  58. * @param int $machineDetectionSilenceTimeout Number of milliseconds of initial
  59. * silence
  60. * @param string $asyncAmd Enable asynchronous AMD
  61. * @param string $asyncAmdStatusCallback The URL we should call to send amd
  62. * status information to your application
  63. * @param string $asyncAmdStatusCallbackMethod HTTP Method to use with
  64. * async_amd_status_callback
  65. * @param string $byoc BYOC trunk SID (Beta)
  66. * @param string $callReason Reason for the call (Branded Calls Beta)
  67. * @param string $callToken A token string needed to invoke a forwarded call
  68. * with a caller-id recieved on a previous incoming
  69. * call
  70. * @param string $recordingTrack Which track(s) to record
  71. * @param int $timeLimit The maximum duration of the call in seconds.
  72. * @return CreateCallOptions Options builder
  73. */
  74. public static function create(string $url = Values::NONE, string $twiml = Values::NONE, string $applicationSid = Values::NONE, string $method = Values::NONE, string $fallbackUrl = Values::NONE, string $fallbackMethod = Values::NONE, string $statusCallback = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, string $statusCallbackMethod = Values::NONE, string $sendDigits = Values::NONE, int $timeout = Values::NONE, bool $record = Values::NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, string $recordingStatusCallbackMethod = Values::NONE, string $sipAuthUsername = Values::NONE, string $sipAuthPassword = Values::NONE, string $machineDetection = Values::NONE, int $machineDetectionTimeout = Values::NONE, array $recordingStatusCallbackEvent = Values::ARRAY_NONE, string $trim = Values::NONE, string $callerId = Values::NONE, int $machineDetectionSpeechThreshold = Values::NONE, int $machineDetectionSpeechEndThreshold = Values::NONE, int $machineDetectionSilenceTimeout = Values::NONE, string $asyncAmd = Values::NONE, string $asyncAmdStatusCallback = Values::NONE, string $asyncAmdStatusCallbackMethod = Values::NONE, string $byoc = Values::NONE, string $callReason = Values::NONE, string $callToken = Values::NONE, string $recordingTrack = Values::NONE, int $timeLimit = Values::NONE): CreateCallOptions {
  75. return new CreateCallOptions($url, $twiml, $applicationSid, $method, $fallbackUrl, $fallbackMethod, $statusCallback, $statusCallbackEvent, $statusCallbackMethod, $sendDigits, $timeout, $record, $recordingChannels, $recordingStatusCallback, $recordingStatusCallbackMethod, $sipAuthUsername, $sipAuthPassword, $machineDetection, $machineDetectionTimeout, $recordingStatusCallbackEvent, $trim, $callerId, $machineDetectionSpeechThreshold, $machineDetectionSpeechEndThreshold, $machineDetectionSilenceTimeout, $asyncAmd, $asyncAmdStatusCallback, $asyncAmdStatusCallbackMethod, $byoc, $callReason, $callToken, $recordingTrack, $timeLimit);
  76. }
  77. /**
  78. * @param string $to Phone number or Client identifier of calls to include
  79. * @param string $from Phone number or Client identifier to filter `from` on
  80. * @param string $parentCallSid Parent call SID to filter on
  81. * @param string $status The status of the resources to read
  82. * @param string $startTimeBefore Only include calls that started on this date
  83. * @param string $startTime Only include calls that started on this date
  84. * @param string $startTimeAfter Only include calls that started on this date
  85. * @param string $endTimeBefore Only include calls that ended on this date
  86. * @param string $endTime Only include calls that ended on this date
  87. * @param string $endTimeAfter Only include calls that ended on this date
  88. * @return ReadCallOptions Options builder
  89. */
  90. public static function read(string $to = Values::NONE, string $from = Values::NONE, string $parentCallSid = Values::NONE, string $status = Values::NONE, string $startTimeBefore = Values::NONE, string $startTime = Values::NONE, string $startTimeAfter = Values::NONE, string $endTimeBefore = Values::NONE, string $endTime = Values::NONE, string $endTimeAfter = Values::NONE): ReadCallOptions {
  91. return new ReadCallOptions($to, $from, $parentCallSid, $status, $startTimeBefore, $startTime, $startTimeAfter, $endTimeBefore, $endTime, $endTimeAfter);
  92. }
  93. /**
  94. * @param string $url The absolute URL that returns TwiML for this call
  95. * @param string $method HTTP method to use to fetch TwiML
  96. * @param string $status The new status to update the call with.
  97. * @param string $fallbackUrl Fallback URL in case of error
  98. * @param string $fallbackMethod HTTP Method to use with fallback_url
  99. * @param string $statusCallback The URL we should call to send status
  100. * information to your application
  101. * @param string $statusCallbackMethod HTTP Method to use to call
  102. * status_callback
  103. * @param string $twiml TwiML instructions for the call
  104. * @param int $timeLimit The maximum duration of the call in seconds.
  105. * @return UpdateCallOptions Options builder
  106. */
  107. public static function update(string $url = Values::NONE, string $method = Values::NONE, string $status = Values::NONE, string $fallbackUrl = Values::NONE, string $fallbackMethod = Values::NONE, string $statusCallback = Values::NONE, string $statusCallbackMethod = Values::NONE, string $twiml = Values::NONE, int $timeLimit = Values::NONE): UpdateCallOptions {
  108. return new UpdateCallOptions($url, $method, $status, $fallbackUrl, $fallbackMethod, $statusCallback, $statusCallbackMethod, $twiml, $timeLimit);
  109. }
  110. }
  111. class CreateCallOptions extends Options {
  112. /**
  113. * @param string $url The absolute URL that returns TwiML for this call
  114. * @param string $twiml TwiML instructions for the call
  115. * @param string $applicationSid The SID of the Application resource that will
  116. * handle the call
  117. * @param string $method HTTP method to use to fetch TwiML
  118. * @param string $fallbackUrl Fallback URL in case of error
  119. * @param string $fallbackMethod HTTP Method to use with fallback_url
  120. * @param string $statusCallback The URL we should call to send status
  121. * information to your application
  122. * @param string[] $statusCallbackEvent The call progress events that we send
  123. * to the `status_callback` URL.
  124. * @param string $statusCallbackMethod HTTP Method to use with status_callback
  125. * @param string $sendDigits The digits to dial after connecting to the number
  126. * @param int $timeout Number of seconds to wait for an answer
  127. * @param bool $record Whether to record the call
  128. * @param string $recordingChannels The number of channels in the final
  129. * recording
  130. * @param string $recordingStatusCallback The URL that we call when the
  131. * recording is available to be accessed
  132. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  133. * when calling the
  134. * `recording_status_callback` URL
  135. * @param string $sipAuthUsername The username used to authenticate the caller
  136. * making a SIP call
  137. * @param string $sipAuthPassword The password required to authenticate the
  138. * user account specified in `sip_auth_username`.
  139. * @param string $machineDetection Enable machine detection or end of greeting
  140. * detection
  141. * @param int $machineDetectionTimeout Number of seconds to wait for machine
  142. * detection
  143. * @param string[] $recordingStatusCallbackEvent The recording status events
  144. * that will trigger calls to the
  145. * URL specified in
  146. * `recording_status_callback`
  147. * @param string $trim Set this parameter to control trimming of silence on the
  148. * recording.
  149. * @param string $callerId The phone number, SIP address, or Client identifier
  150. * that made this call. Phone numbers are in E.164
  151. * format (e.g., +16175551212). SIP addresses are
  152. * formatted as `name@company.com`.
  153. * @param int $machineDetectionSpeechThreshold Number of milliseconds for
  154. * measuring stick for the length
  155. * of the speech activity
  156. * @param int $machineDetectionSpeechEndThreshold Number of milliseconds of
  157. * silence after speech activity
  158. * @param int $machineDetectionSilenceTimeout Number of milliseconds of initial
  159. * silence
  160. * @param string $asyncAmd Enable asynchronous AMD
  161. * @param string $asyncAmdStatusCallback The URL we should call to send amd
  162. * status information to your application
  163. * @param string $asyncAmdStatusCallbackMethod HTTP Method to use with
  164. * async_amd_status_callback
  165. * @param string $byoc BYOC trunk SID (Beta)
  166. * @param string $callReason Reason for the call (Branded Calls Beta)
  167. * @param string $callToken A token string needed to invoke a forwarded call
  168. * with a caller-id recieved on a previous incoming
  169. * call
  170. * @param string $recordingTrack Which track(s) to record
  171. * @param int $timeLimit The maximum duration of the call in seconds.
  172. */
  173. public function __construct(string $url = Values::NONE, string $twiml = Values::NONE, string $applicationSid = Values::NONE, string $method = Values::NONE, string $fallbackUrl = Values::NONE, string $fallbackMethod = Values::NONE, string $statusCallback = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, string $statusCallbackMethod = Values::NONE, string $sendDigits = Values::NONE, int $timeout = Values::NONE, bool $record = Values::NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, string $recordingStatusCallbackMethod = Values::NONE, string $sipAuthUsername = Values::NONE, string $sipAuthPassword = Values::NONE, string $machineDetection = Values::NONE, int $machineDetectionTimeout = Values::NONE, array $recordingStatusCallbackEvent = Values::ARRAY_NONE, string $trim = Values::NONE, string $callerId = Values::NONE, int $machineDetectionSpeechThreshold = Values::NONE, int $machineDetectionSpeechEndThreshold = Values::NONE, int $machineDetectionSilenceTimeout = Values::NONE, string $asyncAmd = Values::NONE, string $asyncAmdStatusCallback = Values::NONE, string $asyncAmdStatusCallbackMethod = Values::NONE, string $byoc = Values::NONE, string $callReason = Values::NONE, string $callToken = Values::NONE, string $recordingTrack = Values::NONE, int $timeLimit = Values::NONE) {
  174. $this->options['url'] = $url;
  175. $this->options['twiml'] = $twiml;
  176. $this->options['applicationSid'] = $applicationSid;
  177. $this->options['method'] = $method;
  178. $this->options['fallbackUrl'] = $fallbackUrl;
  179. $this->options['fallbackMethod'] = $fallbackMethod;
  180. $this->options['statusCallback'] = $statusCallback;
  181. $this->options['statusCallbackEvent'] = $statusCallbackEvent;
  182. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  183. $this->options['sendDigits'] = $sendDigits;
  184. $this->options['timeout'] = $timeout;
  185. $this->options['record'] = $record;
  186. $this->options['recordingChannels'] = $recordingChannels;
  187. $this->options['recordingStatusCallback'] = $recordingStatusCallback;
  188. $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;
  189. $this->options['sipAuthUsername'] = $sipAuthUsername;
  190. $this->options['sipAuthPassword'] = $sipAuthPassword;
  191. $this->options['machineDetection'] = $machineDetection;
  192. $this->options['machineDetectionTimeout'] = $machineDetectionTimeout;
  193. $this->options['recordingStatusCallbackEvent'] = $recordingStatusCallbackEvent;
  194. $this->options['trim'] = $trim;
  195. $this->options['callerId'] = $callerId;
  196. $this->options['machineDetectionSpeechThreshold'] = $machineDetectionSpeechThreshold;
  197. $this->options['machineDetectionSpeechEndThreshold'] = $machineDetectionSpeechEndThreshold;
  198. $this->options['machineDetectionSilenceTimeout'] = $machineDetectionSilenceTimeout;
  199. $this->options['asyncAmd'] = $asyncAmd;
  200. $this->options['asyncAmdStatusCallback'] = $asyncAmdStatusCallback;
  201. $this->options['asyncAmdStatusCallbackMethod'] = $asyncAmdStatusCallbackMethod;
  202. $this->options['byoc'] = $byoc;
  203. $this->options['callReason'] = $callReason;
  204. $this->options['callToken'] = $callToken;
  205. $this->options['recordingTrack'] = $recordingTrack;
  206. $this->options['timeLimit'] = $timeLimit;
  207. }
  208. /**
  209. * The absolute URL that returns the TwiML instructions for the call. We will call this URL using the `method` when the call connects. For more information, see the [Url Parameter](https://www.twilio.com/docs/voice/make-calls#specify-a-url-parameter) section in [Making Calls](https://www.twilio.com/docs/voice/make-calls).
  210. *
  211. * @param string $url The absolute URL that returns TwiML for this call
  212. * @return $this Fluent Builder
  213. */
  214. public function setUrl(string $url): self {
  215. $this->options['url'] = $url;
  216. return $this;
  217. }
  218. /**
  219. * TwiML instructions for the call Twilio will use without fetching Twiml from url parameter. If both `twiml` and `url` are provided then `twiml` parameter will be ignored. Max 4000 characters.
  220. *
  221. * @param string $twiml TwiML instructions for the call
  222. * @return $this Fluent Builder
  223. */
  224. public function setTwiml(string $twiml): self {
  225. $this->options['twiml'] = $twiml;
  226. return $this;
  227. }
  228. /**
  229. * The SID of the Application resource that will handle the call, if the call will be handled by an application.
  230. *
  231. * @param string $applicationSid The SID of the Application resource that will
  232. * handle the call
  233. * @return $this Fluent Builder
  234. */
  235. public function setApplicationSid(string $applicationSid): self {
  236. $this->options['applicationSid'] = $applicationSid;
  237. return $this;
  238. }
  239. /**
  240. * The HTTP method we should use when calling the `url` parameter's value. Can be: `GET` or `POST` and the default is `POST`. If an `application_sid` parameter is present, this parameter is ignored.
  241. *
  242. * @param string $method HTTP method to use to fetch TwiML
  243. * @return $this Fluent Builder
  244. */
  245. public function setMethod(string $method): self {
  246. $this->options['method'] = $method;
  247. return $this;
  248. }
  249. /**
  250. * The URL that we call using the `fallback_method` if an error occurs when requesting or executing the TwiML at `url`. If an `application_sid` parameter is present, this parameter is ignored.
  251. *
  252. * @param string $fallbackUrl Fallback URL in case of error
  253. * @return $this Fluent Builder
  254. */
  255. public function setFallbackUrl(string $fallbackUrl): self {
  256. $this->options['fallbackUrl'] = $fallbackUrl;
  257. return $this;
  258. }
  259. /**
  260. * The HTTP method that we should use to request the `fallback_url`. Can be: `GET` or `POST` and the default is `POST`. If an `application_sid` parameter is present, this parameter is ignored.
  261. *
  262. * @param string $fallbackMethod HTTP Method to use with fallback_url
  263. * @return $this Fluent Builder
  264. */
  265. public function setFallbackMethod(string $fallbackMethod): self {
  266. $this->options['fallbackMethod'] = $fallbackMethod;
  267. return $this;
  268. }
  269. /**
  270. * The URL we should call using the `status_callback_method` to send status information to your application. If no `status_callback_event` is specified, we will send the `completed` status. If an `application_sid` parameter is present, this parameter is ignored. URLs must contain a valid hostname (underscores are not permitted).
  271. *
  272. * @param string $statusCallback The URL we should call to send status
  273. * information to your application
  274. * @return $this Fluent Builder
  275. */
  276. public function setStatusCallback(string $statusCallback): self {
  277. $this->options['statusCallback'] = $statusCallback;
  278. return $this;
  279. }
  280. /**
  281. * The call progress events that we will send to the `status_callback` URL. Can be: `initiated`, `ringing`, `answered`, and `completed`. If no event is specified, we send the `completed` status. If you want to receive multiple events, specify each one in a separate `status_callback_event` parameter. See the code sample for [monitoring call progress](https://www.twilio.com/docs/voice/api/call-resource?code-sample=code-create-a-call-resource-and-specify-a-statuscallbackevent&code-sdk-version=json). If an `application_sid` is present, this parameter is ignored.
  282. *
  283. * @param string[] $statusCallbackEvent The call progress events that we send
  284. * to the `status_callback` URL.
  285. * @return $this Fluent Builder
  286. */
  287. public function setStatusCallbackEvent(array $statusCallbackEvent): self {
  288. $this->options['statusCallbackEvent'] = $statusCallbackEvent;
  289. return $this;
  290. }
  291. /**
  292. * The HTTP method we should use when calling the `status_callback` URL. Can be: `GET` or `POST` and the default is `POST`. If an `application_sid` parameter is present, this parameter is ignored.
  293. *
  294. * @param string $statusCallbackMethod HTTP Method to use with status_callback
  295. * @return $this Fluent Builder
  296. */
  297. public function setStatusCallbackMethod(string $statusCallbackMethod): self {
  298. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  299. return $this;
  300. }
  301. /**
  302. * A string of keys to dial after connecting to the number, maximum of 32 digits. Valid digits in the string include: any digit (`0`-`9`), '`#`', '`*`' and '`w`', to insert a half second pause. For example, if you connected to a company phone number and wanted to pause for one second, and then dial extension 1234 followed by the pound key, the value of this parameter would be `ww1234#`. Remember to URL-encode this string, since the '`#`' character has special meaning in a URL. If both `SendDigits` and `MachineDetection` parameters are provided, then `MachineDetection` will be ignored.
  303. *
  304. * @param string $sendDigits The digits to dial after connecting to the number
  305. * @return $this Fluent Builder
  306. */
  307. public function setSendDigits(string $sendDigits): self {
  308. $this->options['sendDigits'] = $sendDigits;
  309. return $this;
  310. }
  311. /**
  312. * The integer number of seconds that we should allow the phone to ring before assuming there is no answer. The default is `60` seconds and the maximum is `600` seconds. For some call flows, we will add a 5-second buffer to the timeout value you provide. For this reason, a timeout value of 10 seconds could result in an actual timeout closer to 15 seconds. You can set this to a short time, such as `15` seconds, to hang up before reaching an answering machine or voicemail.
  313. *
  314. * @param int $timeout Number of seconds to wait for an answer
  315. * @return $this Fluent Builder
  316. */
  317. public function setTimeout(int $timeout): self {
  318. $this->options['timeout'] = $timeout;
  319. return $this;
  320. }
  321. /**
  322. * Whether to record the call. Can be `true` to record the phone call, or `false` to not. The default is `false`. The `recording_url` is sent to the `status_callback` URL.
  323. *
  324. * @param bool $record Whether to record the call
  325. * @return $this Fluent Builder
  326. */
  327. public function setRecord(bool $record): self {
  328. $this->options['record'] = $record;
  329. return $this;
  330. }
  331. /**
  332. * The number of channels in the final recording. Can be: `mono` or `dual`. The default is `mono`. `mono` records both legs of the call in a single channel of the recording file. `dual` records each leg to a separate channel of the recording file. The first channel of a dual-channel recording contains the parent call and the second channel contains the child call.
  333. *
  334. * @param string $recordingChannels The number of channels in the final
  335. * recording
  336. * @return $this Fluent Builder
  337. */
  338. public function setRecordingChannels(string $recordingChannels): self {
  339. $this->options['recordingChannels'] = $recordingChannels;
  340. return $this;
  341. }
  342. /**
  343. * The URL that we call when the recording is available to be accessed.
  344. *
  345. * @param string $recordingStatusCallback The URL that we call when the
  346. * recording is available to be accessed
  347. * @return $this Fluent Builder
  348. */
  349. public function setRecordingStatusCallback(string $recordingStatusCallback): self {
  350. $this->options['recordingStatusCallback'] = $recordingStatusCallback;
  351. return $this;
  352. }
  353. /**
  354. * The HTTP method we should use when calling the `recording_status_callback` URL. Can be: `GET` or `POST` and the default is `POST`.
  355. *
  356. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  357. * when calling the
  358. * `recording_status_callback` URL
  359. * @return $this Fluent Builder
  360. */
  361. public function setRecordingStatusCallbackMethod(string $recordingStatusCallbackMethod): self {
  362. $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;
  363. return $this;
  364. }
  365. /**
  366. * The username used to authenticate the caller making a SIP call.
  367. *
  368. * @param string $sipAuthUsername The username used to authenticate the caller
  369. * making a SIP call
  370. * @return $this Fluent Builder
  371. */
  372. public function setSipAuthUsername(string $sipAuthUsername): self {
  373. $this->options['sipAuthUsername'] = $sipAuthUsername;
  374. return $this;
  375. }
  376. /**
  377. * The password required to authenticate the user account specified in `sip_auth_username`.
  378. *
  379. * @param string $sipAuthPassword The password required to authenticate the
  380. * user account specified in `sip_auth_username`.
  381. * @return $this Fluent Builder
  382. */
  383. public function setSipAuthPassword(string $sipAuthPassword): self {
  384. $this->options['sipAuthPassword'] = $sipAuthPassword;
  385. return $this;
  386. }
  387. /**
  388. * Whether to detect if a human, answering machine, or fax has picked up the call. Can be: `Enable` or `DetectMessageEnd`. Use `Enable` if you would like us to return `AnsweredBy` as soon as the called party is identified. Use `DetectMessageEnd`, if you would like to leave a message on an answering machine. If `send_digits` is provided, this parameter is ignored. For more information, see [Answering Machine Detection](https://www.twilio.com/docs/voice/answering-machine-detection).
  389. *
  390. * @param string $machineDetection Enable machine detection or end of greeting
  391. * detection
  392. * @return $this Fluent Builder
  393. */
  394. public function setMachineDetection(string $machineDetection): self {
  395. $this->options['machineDetection'] = $machineDetection;
  396. return $this;
  397. }
  398. /**
  399. * The number of seconds that we should attempt to detect an answering machine before timing out and sending a voice request with `AnsweredBy` of `unknown`. The default timeout is 30 seconds.
  400. *
  401. * @param int $machineDetectionTimeout Number of seconds to wait for machine
  402. * detection
  403. * @return $this Fluent Builder
  404. */
  405. public function setMachineDetectionTimeout(int $machineDetectionTimeout): self {
  406. $this->options['machineDetectionTimeout'] = $machineDetectionTimeout;
  407. return $this;
  408. }
  409. /**
  410. * The recording status events that will trigger calls to the URL specified in `recording_status_callback`. Can be: `in-progress`, `completed` and `absent`. Defaults to `completed`. Separate multiple values with a space.
  411. *
  412. * @param string[] $recordingStatusCallbackEvent The recording status events
  413. * that will trigger calls to the
  414. * URL specified in
  415. * `recording_status_callback`
  416. * @return $this Fluent Builder
  417. */
  418. public function setRecordingStatusCallbackEvent(array $recordingStatusCallbackEvent): self {
  419. $this->options['recordingStatusCallbackEvent'] = $recordingStatusCallbackEvent;
  420. return $this;
  421. }
  422. /**
  423. * Whether to trim any leading and trailing silence from the recording. Can be: `trim-silence` or `do-not-trim` and the default is `trim-silence`.
  424. *
  425. * @param string $trim Set this parameter to control trimming of silence on the
  426. * recording.
  427. * @return $this Fluent Builder
  428. */
  429. public function setTrim(string $trim): self {
  430. $this->options['trim'] = $trim;
  431. return $this;
  432. }
  433. /**
  434. * The phone number, SIP address, or Client identifier that made this call. Phone numbers are in [E.164 format](https://wwnw.twilio.com/docs/glossary/what-e164) (e.g., +16175551212). SIP addresses are formatted as `name@company.com`.
  435. *
  436. * @param string $callerId The phone number, SIP address, or Client identifier
  437. * that made this call. Phone numbers are in E.164
  438. * format (e.g., +16175551212). SIP addresses are
  439. * formatted as `name@company.com`.
  440. * @return $this Fluent Builder
  441. */
  442. public function setCallerId(string $callerId): self {
  443. $this->options['callerId'] = $callerId;
  444. return $this;
  445. }
  446. /**
  447. * The number of milliseconds that is used as the measuring stick for the length of the speech activity, where durations lower than this value will be interpreted as a human and longer than this value as a machine. Possible Values: 1000-6000. Default: 2400.
  448. *
  449. * @param int $machineDetectionSpeechThreshold Number of milliseconds for
  450. * measuring stick for the length
  451. * of the speech activity
  452. * @return $this Fluent Builder
  453. */
  454. public function setMachineDetectionSpeechThreshold(int $machineDetectionSpeechThreshold): self {
  455. $this->options['machineDetectionSpeechThreshold'] = $machineDetectionSpeechThreshold;
  456. return $this;
  457. }
  458. /**
  459. * The number of milliseconds of silence after speech activity at which point the speech activity is considered complete. Possible Values: 500-5000. Default: 1200.
  460. *
  461. * @param int $machineDetectionSpeechEndThreshold Number of milliseconds of
  462. * silence after speech activity
  463. * @return $this Fluent Builder
  464. */
  465. public function setMachineDetectionSpeechEndThreshold(int $machineDetectionSpeechEndThreshold): self {
  466. $this->options['machineDetectionSpeechEndThreshold'] = $machineDetectionSpeechEndThreshold;
  467. return $this;
  468. }
  469. /**
  470. * The number of milliseconds of initial silence after which an `unknown` AnsweredBy result will be returned. Possible Values: 2000-10000. Default: 5000.
  471. *
  472. * @param int $machineDetectionSilenceTimeout Number of milliseconds of initial
  473. * silence
  474. * @return $this Fluent Builder
  475. */
  476. public function setMachineDetectionSilenceTimeout(int $machineDetectionSilenceTimeout): self {
  477. $this->options['machineDetectionSilenceTimeout'] = $machineDetectionSilenceTimeout;
  478. return $this;
  479. }
  480. /**
  481. * Select whether to perform answering machine detection in the background. Default, blocks the execution of the call until Answering Machine Detection is completed. Can be: `true` or `false`.
  482. *
  483. * @param string $asyncAmd Enable asynchronous AMD
  484. * @return $this Fluent Builder
  485. */
  486. public function setAsyncAmd(string $asyncAmd): self {
  487. $this->options['asyncAmd'] = $asyncAmd;
  488. return $this;
  489. }
  490. /**
  491. * The URL that we should call using the `async_amd_status_callback_method` to notify customer application whether the call was answered by human, machine or fax.
  492. *
  493. * @param string $asyncAmdStatusCallback The URL we should call to send amd
  494. * status information to your application
  495. * @return $this Fluent Builder
  496. */
  497. public function setAsyncAmdStatusCallback(string $asyncAmdStatusCallback): self {
  498. $this->options['asyncAmdStatusCallback'] = $asyncAmdStatusCallback;
  499. return $this;
  500. }
  501. /**
  502. * The HTTP method we should use when calling the `async_amd_status_callback` URL. Can be: `GET` or `POST` and the default is `POST`.
  503. *
  504. * @param string $asyncAmdStatusCallbackMethod HTTP Method to use with
  505. * async_amd_status_callback
  506. * @return $this Fluent Builder
  507. */
  508. public function setAsyncAmdStatusCallbackMethod(string $asyncAmdStatusCallbackMethod): self {
  509. $this->options['asyncAmdStatusCallbackMethod'] = $asyncAmdStatusCallbackMethod;
  510. return $this;
  511. }
  512. /**
  513. * The SID of a BYOC (Bring Your Own Carrier) trunk to route this call with. Note that `byoc` is only meaningful when `to` is a phone number; it will otherwise be ignored. (Beta)
  514. *
  515. * @param string $byoc BYOC trunk SID (Beta)
  516. * @return $this Fluent Builder
  517. */
  518. public function setByoc(string $byoc): self {
  519. $this->options['byoc'] = $byoc;
  520. return $this;
  521. }
  522. /**
  523. * The Reason for the outgoing call. Use it to specify the purpose of the call that is presented on the called party's phone. (Branded Calls Beta)
  524. *
  525. * @param string $callReason Reason for the call (Branded Calls Beta)
  526. * @return $this Fluent Builder
  527. */
  528. public function setCallReason(string $callReason): self {
  529. $this->options['callReason'] = $callReason;
  530. return $this;
  531. }
  532. /**
  533. * A token string needed to invoke a forwarded call. A call_token is generated when an incoming call is received on a Twilio number. this field should be populated by the incoming call's call_token to make this outgoing call as a forwarded call of incoming call. A forwarded call should bear the same caller-id of incoming call.
  534. *
  535. * @param string $callToken A token string needed to invoke a forwarded call
  536. * with a caller-id recieved on a previous incoming
  537. * call
  538. * @return $this Fluent Builder
  539. */
  540. public function setCallToken(string $callToken): self {
  541. $this->options['callToken'] = $callToken;
  542. return $this;
  543. }
  544. /**
  545. * The audio track to record for the call. Can be: `inbound`, `outbound` or `both`. The default is `both`. `inbound` records the audio that is received by Twilio. `outbound` records the audio that is generated from Twilio. `both` records the audio that is received and generated by Twilio.
  546. *
  547. * @param string $recordingTrack Which track(s) to record
  548. * @return $this Fluent Builder
  549. */
  550. public function setRecordingTrack(string $recordingTrack): self {
  551. $this->options['recordingTrack'] = $recordingTrack;
  552. return $this;
  553. }
  554. /**
  555. * The maximum duration of the call in seconds. Constraints depend on account and configuration.
  556. *
  557. * @param int $timeLimit The maximum duration of the call in seconds.
  558. * @return $this Fluent Builder
  559. */
  560. public function setTimeLimit(int $timeLimit): self {
  561. $this->options['timeLimit'] = $timeLimit;
  562. return $this;
  563. }
  564. /**
  565. * Provide a friendly representation
  566. *
  567. * @return string Machine friendly representation
  568. */
  569. public function __toString(): string {
  570. $options = \http_build_query(Values::of($this->options), '', ' ');
  571. return '[Twilio.Api.V2010.CreateCallOptions ' . $options . ']';
  572. }
  573. }
  574. class ReadCallOptions extends Options {
  575. /**
  576. * @param string $to Phone number or Client identifier of calls to include
  577. * @param string $from Phone number or Client identifier to filter `from` on
  578. * @param string $parentCallSid Parent call SID to filter on
  579. * @param string $status The status of the resources to read
  580. * @param string $startTimeBefore Only include calls that started on this date
  581. * @param string $startTime Only include calls that started on this date
  582. * @param string $startTimeAfter Only include calls that started on this date
  583. * @param string $endTimeBefore Only include calls that ended on this date
  584. * @param string $endTime Only include calls that ended on this date
  585. * @param string $endTimeAfter Only include calls that ended on this date
  586. */
  587. public function __construct(string $to = Values::NONE, string $from = Values::NONE, string $parentCallSid = Values::NONE, string $status = Values::NONE, string $startTimeBefore = Values::NONE, string $startTime = Values::NONE, string $startTimeAfter = Values::NONE, string $endTimeBefore = Values::NONE, string $endTime = Values::NONE, string $endTimeAfter = Values::NONE) {
  588. $this->options['to'] = $to;
  589. $this->options['from'] = $from;
  590. $this->options['parentCallSid'] = $parentCallSid;
  591. $this->options['status'] = $status;
  592. $this->options['startTimeBefore'] = $startTimeBefore;
  593. $this->options['startTime'] = $startTime;
  594. $this->options['startTimeAfter'] = $startTimeAfter;
  595. $this->options['endTimeBefore'] = $endTimeBefore;
  596. $this->options['endTime'] = $endTime;
  597. $this->options['endTimeAfter'] = $endTimeAfter;
  598. }
  599. /**
  600. * Only show calls made to this phone number, SIP address, Client identifier or SIM SID.
  601. *
  602. * @param string $to Phone number or Client identifier of calls to include
  603. * @return $this Fluent Builder
  604. */
  605. public function setTo(string $to): self {
  606. $this->options['to'] = $to;
  607. return $this;
  608. }
  609. /**
  610. * Only include calls from this phone number, SIP address, Client identifier or SIM SID.
  611. *
  612. * @param string $from Phone number or Client identifier to filter `from` on
  613. * @return $this Fluent Builder
  614. */
  615. public function setFrom(string $from): self {
  616. $this->options['from'] = $from;
  617. return $this;
  618. }
  619. /**
  620. * Only include calls spawned by calls with this SID.
  621. *
  622. * @param string $parentCallSid Parent call SID to filter on
  623. * @return $this Fluent Builder
  624. */
  625. public function setParentCallSid(string $parentCallSid): self {
  626. $this->options['parentCallSid'] = $parentCallSid;
  627. return $this;
  628. }
  629. /**
  630. * The status of the calls to include. Can be: `queued`, `ringing`, `in-progress`, `canceled`, `completed`, `failed`, `busy`, or `no-answer`.
  631. *
  632. * @param string $status The status of the resources to read
  633. * @return $this Fluent Builder
  634. */
  635. public function setStatus(string $status): self {
  636. $this->options['status'] = $status;
  637. return $this;
  638. }
  639. /**
  640. * Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date.
  641. *
  642. * @param string $startTimeBefore Only include calls that started on this date
  643. * @return $this Fluent Builder
  644. */
  645. public function setStartTimeBefore(string $startTimeBefore): self {
  646. $this->options['startTimeBefore'] = $startTimeBefore;
  647. return $this;
  648. }
  649. /**
  650. * Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date.
  651. *
  652. * @param string $startTime Only include calls that started on this date
  653. * @return $this Fluent Builder
  654. */
  655. public function setStartTime(string $startTime): self {
  656. $this->options['startTime'] = $startTime;
  657. return $this;
  658. }
  659. /**
  660. * Only include calls that started on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that started on this date. You can also specify an inequality, such as `StartTime<=YYYY-MM-DD`, to read calls that started on or before midnight of this date, and `StartTime>=YYYY-MM-DD` to read calls that started on or after midnight of this date.
  661. *
  662. * @param string $startTimeAfter Only include calls that started on this date
  663. * @return $this Fluent Builder
  664. */
  665. public function setStartTimeAfter(string $startTimeAfter): self {
  666. $this->options['startTimeAfter'] = $startTimeAfter;
  667. return $this;
  668. }
  669. /**
  670. * Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date.
  671. *
  672. * @param string $endTimeBefore Only include calls that ended on this date
  673. * @return $this Fluent Builder
  674. */
  675. public function setEndTimeBefore(string $endTimeBefore): self {
  676. $this->options['endTimeBefore'] = $endTimeBefore;
  677. return $this;
  678. }
  679. /**
  680. * Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date.
  681. *
  682. * @param string $endTime Only include calls that ended on this date
  683. * @return $this Fluent Builder
  684. */
  685. public function setEndTime(string $endTime): self {
  686. $this->options['endTime'] = $endTime;
  687. return $this;
  688. }
  689. /**
  690. * Only include calls that ended on this date. Specify a date as `YYYY-MM-DD` in GMT, for example: `2009-07-06`, to read only calls that ended on this date. You can also specify an inequality, such as `EndTime<=YYYY-MM-DD`, to read calls that ended on or before midnight of this date, and `EndTime>=YYYY-MM-DD` to read calls that ended on or after midnight of this date.
  691. *
  692. * @param string $endTimeAfter Only include calls that ended on this date
  693. * @return $this Fluent Builder
  694. */
  695. public function setEndTimeAfter(string $endTimeAfter): self {
  696. $this->options['endTimeAfter'] = $endTimeAfter;
  697. return $this;
  698. }
  699. /**
  700. * Provide a friendly representation
  701. *
  702. * @return string Machine friendly representation
  703. */
  704. public function __toString(): string {
  705. $options = \http_build_query(Values::of($this->options), '', ' ');
  706. return '[Twilio.Api.V2010.ReadCallOptions ' . $options . ']';
  707. }
  708. }
  709. class UpdateCallOptions extends Options {
  710. /**
  711. * @param string $url The absolute URL that returns TwiML for this call
  712. * @param string $method HTTP method to use to fetch TwiML
  713. * @param string $status The new status to update the call with.
  714. * @param string $fallbackUrl Fallback URL in case of error
  715. * @param string $fallbackMethod HTTP Method to use with fallback_url
  716. * @param string $statusCallback The URL we should call to send status
  717. * information to your application
  718. * @param string $statusCallbackMethod HTTP Method to use to call
  719. * status_callback
  720. * @param string $twiml TwiML instructions for the call
  721. * @param int $timeLimit The maximum duration of the call in seconds.
  722. */
  723. public function __construct(string $url = Values::NONE, string $method = Values::NONE, string $status = Values::NONE, string $fallbackUrl = Values::NONE, string $fallbackMethod = Values::NONE, string $statusCallback = Values::NONE, string $statusCallbackMethod = Values::NONE, string $twiml = Values::NONE, int $timeLimit = Values::NONE) {
  724. $this->options['url'] = $url;
  725. $this->options['method'] = $method;
  726. $this->options['status'] = $status;
  727. $this->options['fallbackUrl'] = $fallbackUrl;
  728. $this->options['fallbackMethod'] = $fallbackMethod;
  729. $this->options['statusCallback'] = $statusCallback;
  730. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  731. $this->options['twiml'] = $twiml;
  732. $this->options['timeLimit'] = $timeLimit;
  733. }
  734. /**
  735. * The absolute URL that returns the TwiML instructions for the call. We will call this URL using the `method` when the call connects. For more information, see the [Url Parameter](https://www.twilio.com/docs/voice/make-calls#specify-a-url-parameter) section in [Making Calls](https://www.twilio.com/docs/voice/make-calls).
  736. *
  737. * @param string $url The absolute URL that returns TwiML for this call
  738. * @return $this Fluent Builder
  739. */
  740. public function setUrl(string $url): self {
  741. $this->options['url'] = $url;
  742. return $this;
  743. }
  744. /**
  745. * The HTTP method we should use when calling the `url`. Can be: `GET` or `POST` and the default is `POST`. If an `application_sid` parameter is present, this parameter is ignored.
  746. *
  747. * @param string $method HTTP method to use to fetch TwiML
  748. * @return $this Fluent Builder
  749. */
  750. public function setMethod(string $method): self {
  751. $this->options['method'] = $method;
  752. return $this;
  753. }
  754. /**
  755. * The new status of the resource. Can be: `canceled` or `completed`. Specifying `canceled` will attempt to hang up calls that are queued or ringing; however, it will not affect calls already in progress. Specifying `completed` will attempt to hang up a call even if it's already in progress.
  756. *
  757. * @param string $status The new status to update the call with.
  758. * @return $this Fluent Builder
  759. */
  760. public function setStatus(string $status): self {
  761. $this->options['status'] = $status;
  762. return $this;
  763. }
  764. /**
  765. * The URL that we call using the `fallback_method` if an error occurs when requesting or executing the TwiML at `url`. If an `application_sid` parameter is present, this parameter is ignored.
  766. *
  767. * @param string $fallbackUrl Fallback URL in case of error
  768. * @return $this Fluent Builder
  769. */
  770. public function setFallbackUrl(string $fallbackUrl): self {
  771. $this->options['fallbackUrl'] = $fallbackUrl;
  772. return $this;
  773. }
  774. /**
  775. * The HTTP method that we should use to request the `fallback_url`. Can be: `GET` or `POST` and the default is `POST`. If an `application_sid` parameter is present, this parameter is ignored.
  776. *
  777. * @param string $fallbackMethod HTTP Method to use with fallback_url
  778. * @return $this Fluent Builder
  779. */
  780. public function setFallbackMethod(string $fallbackMethod): self {
  781. $this->options['fallbackMethod'] = $fallbackMethod;
  782. return $this;
  783. }
  784. /**
  785. * The URL we should call using the `status_callback_method` to send status information to your application. If no `status_callback_event` is specified, we will send the `completed` status. If an `application_sid` parameter is present, this parameter is ignored. URLs must contain a valid hostname (underscores are not permitted).
  786. *
  787. * @param string $statusCallback The URL we should call to send status
  788. * information to your application
  789. * @return $this Fluent Builder
  790. */
  791. public function setStatusCallback(string $statusCallback): self {
  792. $this->options['statusCallback'] = $statusCallback;
  793. return $this;
  794. }
  795. /**
  796. * The HTTP method we should use when requesting the `status_callback` URL. Can be: `GET` or `POST` and the default is `POST`. If an `application_sid` parameter is present, this parameter is ignored.
  797. *
  798. * @param string $statusCallbackMethod HTTP Method to use to call
  799. * status_callback
  800. * @return $this Fluent Builder
  801. */
  802. public function setStatusCallbackMethod(string $statusCallbackMethod): self {
  803. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  804. return $this;
  805. }
  806. /**
  807. * TwiML instructions for the call Twilio will use without fetching Twiml from url. Twiml and url parameters are mutually exclusive
  808. *
  809. * @param string $twiml TwiML instructions for the call
  810. * @return $this Fluent Builder
  811. */
  812. public function setTwiml(string $twiml): self {
  813. $this-