/src/Twilio/Rest/Taskrouter/V1/Workspace/Worker/ReservationOptions.php

http://github.com/twilio/twilio-php · PHP · 958 lines · 293 code · 62 blank · 603 comment · 0 complexity · 793af918140f0277635f9777170b15ea 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\Taskrouter\V1\Workspace\Worker;
  9. use Twilio\Options;
  10. use Twilio\Values;
  11. abstract class ReservationOptions {
  12. /**
  13. * @param string $reservationStatus Returns the list of reservations for a
  14. * worker with a specified ReservationStatus
  15. * @return ReadReservationOptions Options builder
  16. */
  17. public static function read(string $reservationStatus = Values::NONE): ReadReservationOptions {
  18. return new ReadReservationOptions($reservationStatus);
  19. }
  20. /**
  21. * @param string $reservationStatus The new status of the reservation
  22. * @param string $workerActivitySid The new worker activity SID if rejecting a
  23. * reservation
  24. * @param string $instruction The assignment instruction for the reservation
  25. * @param string $dequeuePostWorkActivitySid The SID of the Activity resource
  26. * to start after executing a Dequeue
  27. * instruction
  28. * @param string $dequeueFrom The caller ID of the call to the worker when
  29. * executing a Dequeue instruction
  30. * @param string $dequeueRecord Whether to record both legs of a call when
  31. * executing a Dequeue instruction
  32. * @param int $dequeueTimeout The timeout for call when executing a Dequeue
  33. * instruction
  34. * @param string $dequeueTo The contact URI of the worker when executing a
  35. * Dequeue instruction
  36. * @param string $dequeueStatusCallbackUrl The callback URL for completed call
  37. * event when executing a Dequeue
  38. * instruction
  39. * @param string $callFrom The Caller ID of the outbound call when executing a
  40. * Call instruction
  41. * @param string $callRecord Whether to record both legs of a call when
  42. * executing a Call instruction
  43. * @param int $callTimeout The timeout for a call when executing a Call
  44. * instruction
  45. * @param string $callTo The contact URI of the worker when executing a Call
  46. * instruction
  47. * @param string $callUrl TwiML URI executed on answering the worker's leg as a
  48. * result of the Call instruction
  49. * @param string $callStatusCallbackUrl The URL to call for the completed call
  50. * event when executing a Call instruction
  51. * @param bool $callAccept Whether to accept a reservation when executing a
  52. * Call instruction
  53. * @param string $redirectCallSid The Call SID of the call parked in the queue
  54. * when executing a Redirect instruction
  55. * @param bool $redirectAccept Whether the reservation should be accepted when
  56. * executing a Redirect instruction
  57. * @param string $redirectUrl TwiML URI to redirect the call to when executing
  58. * the Redirect instruction
  59. * @param string $to The Contact URI of the worker when executing a Conference
  60. * instruction
  61. * @param string $from The caller ID of the call to the worker when executing a
  62. * Conference instruction
  63. * @param string $statusCallback The URL we should call to send status
  64. * information to your application
  65. * @param string $statusCallbackMethod The HTTP method we should use to call
  66. * status_callback
  67. * @param string[] $statusCallbackEvent The call progress events that we will
  68. * send to status_callback
  69. * @param int $timeout The timeout for a call when executing a Conference
  70. * instruction
  71. * @param bool $record Whether to record the participant and their conferences
  72. * @param bool $muted Whether to mute the agent
  73. * @param string $beep Whether to play a notification beep when the participant
  74. * joins
  75. * @param bool $startConferenceOnEnter Whether the conference starts when the
  76. * participant joins the conference
  77. * @param bool $endConferenceOnExit Whether to end the conference when the
  78. * agent leaves
  79. * @param string $waitUrl URL that hosts pre-conference hold music
  80. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  81. * @param bool $earlyMedia Whether agents can hear the state of the outbound
  82. * call
  83. * @param int $maxParticipants The maximum number of agent conference
  84. * participants
  85. * @param string $conferenceStatusCallback The callback URL for conference
  86. * events
  87. * @param string $conferenceStatusCallbackMethod HTTP method for requesting
  88. * `conference_status_callback`
  89. * URL
  90. * @param string[] $conferenceStatusCallbackEvent The conference status events
  91. * that we will send to
  92. * conference_status_callback
  93. * @param string $conferenceRecord Whether to record the conference the
  94. * participant is joining
  95. * @param string $conferenceTrim Whether to trim leading and trailing silence
  96. * from your recorded conference audio files
  97. * @param string $recordingChannels Specify `mono` or `dual` recording channels
  98. * @param string $recordingStatusCallback The URL that we should call using the
  99. * `recording_status_callback_method`
  100. * when the recording status changes
  101. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  102. * when we call
  103. * `recording_status_callback`
  104. * @param string $conferenceRecordingStatusCallback The URL we should call
  105. * using the
  106. * `conference_recording_status_callback_method` when the conference recording is available
  107. * @param string $conferenceRecordingStatusCallbackMethod The HTTP method we
  108. * should use to call
  109. * `conference_recording_status_callback`
  110. * @param string $region The region where we should mix the conference audio
  111. * @param string $sipAuthUsername The SIP username used for authentication
  112. * @param string $sipAuthPassword The SIP password for authentication
  113. * @param string[] $dequeueStatusCallbackEvent The call progress events sent
  114. * via webhooks as a result of a
  115. * Dequeue instruction
  116. * @param string $postWorkActivitySid The new worker activity SID after
  117. * executing a Conference instruction
  118. * @param bool $endConferenceOnCustomerExit Whether to end the conference when
  119. * the customer leaves
  120. * @param bool $beepOnCustomerEntrance Whether to play a notification beep when
  121. * the customer joins
  122. * @param string $ifMatch The If-Match HTTP request header
  123. * @return UpdateReservationOptions Options builder
  124. */
  125. public static function update(string $reservationStatus = Values::NONE, string $workerActivitySid = Values::NONE, string $instruction = Values::NONE, string $dequeuePostWorkActivitySid = Values::NONE, string $dequeueFrom = Values::NONE, string $dequeueRecord = Values::NONE, int $dequeueTimeout = Values::NONE, string $dequeueTo = Values::NONE, string $dequeueStatusCallbackUrl = Values::NONE, string $callFrom = Values::NONE, string $callRecord = Values::NONE, int $callTimeout = Values::NONE, string $callTo = Values::NONE, string $callUrl = Values::NONE, string $callStatusCallbackUrl = Values::NONE, bool $callAccept = Values::NONE, string $redirectCallSid = Values::NONE, bool $redirectAccept = Values::NONE, string $redirectUrl = Values::NONE, string $to = Values::NONE, string $from = Values::NONE, string $statusCallback = Values::NONE, string $statusCallbackMethod = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, int $timeout = Values::NONE, bool $record = Values::NONE, bool $muted = Values::NONE, string $beep = Values::NONE, bool $startConferenceOnEnter = Values::NONE, bool $endConferenceOnExit = Values::NONE, string $waitUrl = Values::NONE, string $waitMethod = Values::NONE, bool $earlyMedia = Values::NONE, int $maxParticipants = Values::NONE, string $conferenceStatusCallback = Values::NONE, string $conferenceStatusCallbackMethod = Values::NONE, array $conferenceStatusCallbackEvent = Values::ARRAY_NONE, string $conferenceRecord = Values::NONE, string $conferenceTrim = Values::NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, string $recordingStatusCallbackMethod = Values::NONE, string $conferenceRecordingStatusCallback = Values::NONE, string $conferenceRecordingStatusCallbackMethod = Values::NONE, string $region = Values::NONE, string $sipAuthUsername = Values::NONE, string $sipAuthPassword = Values::NONE, array $dequeueStatusCallbackEvent = Values::ARRAY_NONE, string $postWorkActivitySid = Values::NONE, bool $endConferenceOnCustomerExit = Values::NONE, bool $beepOnCustomerEntrance = Values::NONE, string $ifMatch = Values::NONE): UpdateReservationOptions {
  126. return new UpdateReservationOptions($reservationStatus, $workerActivitySid, $instruction, $dequeuePostWorkActivitySid, $dequeueFrom, $dequeueRecord, $dequeueTimeout, $dequeueTo, $dequeueStatusCallbackUrl, $callFrom, $callRecord, $callTimeout, $callTo, $callUrl, $callStatusCallbackUrl, $callAccept, $redirectCallSid, $redirectAccept, $redirectUrl, $to, $from, $statusCallback, $statusCallbackMethod, $statusCallbackEvent, $timeout, $record, $muted, $beep, $startConferenceOnEnter, $endConferenceOnExit, $waitUrl, $waitMethod, $earlyMedia, $maxParticipants, $conferenceStatusCallback, $conferenceStatusCallbackMethod, $conferenceStatusCallbackEvent, $conferenceRecord, $conferenceTrim, $recordingChannels, $recordingStatusCallback, $recordingStatusCallbackMethod, $conferenceRecordingStatusCallback, $conferenceRecordingStatusCallbackMethod, $region, $sipAuthUsername, $sipAuthPassword, $dequeueStatusCallbackEvent, $postWorkActivitySid, $endConferenceOnCustomerExit, $beepOnCustomerEntrance, $ifMatch);
  127. }
  128. }
  129. class ReadReservationOptions extends Options {
  130. /**
  131. * @param string $reservationStatus Returns the list of reservations for a
  132. * worker with a specified ReservationStatus
  133. */
  134. public function __construct(string $reservationStatus = Values::NONE) {
  135. $this->options['reservationStatus'] = $reservationStatus;
  136. }
  137. /**
  138. * Returns the list of reservations for a worker with a specified ReservationStatus. Can be: `pending`, `accepted`, `rejected`, `timeout`, `canceled`, or `rescinded`.
  139. *
  140. * @param string $reservationStatus Returns the list of reservations for a
  141. * worker with a specified ReservationStatus
  142. * @return $this Fluent Builder
  143. */
  144. public function setReservationStatus(string $reservationStatus): self {
  145. $this->options['reservationStatus'] = $reservationStatus;
  146. return $this;
  147. }
  148. /**
  149. * Provide a friendly representation
  150. *
  151. * @return string Machine friendly representation
  152. */
  153. public function __toString(): string {
  154. $options = \http_build_query(Values::of($this->options), '', ' ');
  155. return '[Twilio.Taskrouter.V1.ReadReservationOptions ' . $options . ']';
  156. }
  157. }
  158. class UpdateReservationOptions extends Options {
  159. /**
  160. * @param string $reservationStatus The new status of the reservation
  161. * @param string $workerActivitySid The new worker activity SID if rejecting a
  162. * reservation
  163. * @param string $instruction The assignment instruction for the reservation
  164. * @param string $dequeuePostWorkActivitySid The SID of the Activity resource
  165. * to start after executing a Dequeue
  166. * instruction
  167. * @param string $dequeueFrom The caller ID of the call to the worker when
  168. * executing a Dequeue instruction
  169. * @param string $dequeueRecord Whether to record both legs of a call when
  170. * executing a Dequeue instruction
  171. * @param int $dequeueTimeout The timeout for call when executing a Dequeue
  172. * instruction
  173. * @param string $dequeueTo The contact URI of the worker when executing a
  174. * Dequeue instruction
  175. * @param string $dequeueStatusCallbackUrl The callback URL for completed call
  176. * event when executing a Dequeue
  177. * instruction
  178. * @param string $callFrom The Caller ID of the outbound call when executing a
  179. * Call instruction
  180. * @param string $callRecord Whether to record both legs of a call when
  181. * executing a Call instruction
  182. * @param int $callTimeout The timeout for a call when executing a Call
  183. * instruction
  184. * @param string $callTo The contact URI of the worker when executing a Call
  185. * instruction
  186. * @param string $callUrl TwiML URI executed on answering the worker's leg as a
  187. * result of the Call instruction
  188. * @param string $callStatusCallbackUrl The URL to call for the completed call
  189. * event when executing a Call instruction
  190. * @param bool $callAccept Whether to accept a reservation when executing a
  191. * Call instruction
  192. * @param string $redirectCallSid The Call SID of the call parked in the queue
  193. * when executing a Redirect instruction
  194. * @param bool $redirectAccept Whether the reservation should be accepted when
  195. * executing a Redirect instruction
  196. * @param string $redirectUrl TwiML URI to redirect the call to when executing
  197. * the Redirect instruction
  198. * @param string $to The Contact URI of the worker when executing a Conference
  199. * instruction
  200. * @param string $from The caller ID of the call to the worker when executing a
  201. * Conference instruction
  202. * @param string $statusCallback The URL we should call to send status
  203. * information to your application
  204. * @param string $statusCallbackMethod The HTTP method we should use to call
  205. * status_callback
  206. * @param string[] $statusCallbackEvent The call progress events that we will
  207. * send to status_callback
  208. * @param int $timeout The timeout for a call when executing a Conference
  209. * instruction
  210. * @param bool $record Whether to record the participant and their conferences
  211. * @param bool $muted Whether to mute the agent
  212. * @param string $beep Whether to play a notification beep when the participant
  213. * joins
  214. * @param bool $startConferenceOnEnter Whether the conference starts when the
  215. * participant joins the conference
  216. * @param bool $endConferenceOnExit Whether to end the conference when the
  217. * agent leaves
  218. * @param string $waitUrl URL that hosts pre-conference hold music
  219. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  220. * @param bool $earlyMedia Whether agents can hear the state of the outbound
  221. * call
  222. * @param int $maxParticipants The maximum number of agent conference
  223. * participants
  224. * @param string $conferenceStatusCallback The callback URL for conference
  225. * events
  226. * @param string $conferenceStatusCallbackMethod HTTP method for requesting
  227. * `conference_status_callback`
  228. * URL
  229. * @param string[] $conferenceStatusCallbackEvent The conference status events
  230. * that we will send to
  231. * conference_status_callback
  232. * @param string $conferenceRecord Whether to record the conference the
  233. * participant is joining
  234. * @param string $conferenceTrim Whether to trim leading and trailing silence
  235. * from your recorded conference audio files
  236. * @param string $recordingChannels Specify `mono` or `dual` recording channels
  237. * @param string $recordingStatusCallback The URL that we should call using the
  238. * `recording_status_callback_method`
  239. * when the recording status changes
  240. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  241. * when we call
  242. * `recording_status_callback`
  243. * @param string $conferenceRecordingStatusCallback The URL we should call
  244. * using the
  245. * `conference_recording_status_callback_method` when the conference recording is available
  246. * @param string $conferenceRecordingStatusCallbackMethod The HTTP method we
  247. * should use to call
  248. * `conference_recording_status_callback`
  249. * @param string $region The region where we should mix the conference audio
  250. * @param string $sipAuthUsername The SIP username used for authentication
  251. * @param string $sipAuthPassword The SIP password for authentication
  252. * @param string[] $dequeueStatusCallbackEvent The call progress events sent
  253. * via webhooks as a result of a
  254. * Dequeue instruction
  255. * @param string $postWorkActivitySid The new worker activity SID after
  256. * executing a Conference instruction
  257. * @param bool $endConferenceOnCustomerExit Whether to end the conference when
  258. * the customer leaves
  259. * @param bool $beepOnCustomerEntrance Whether to play a notification beep when
  260. * the customer joins
  261. * @param string $ifMatch The If-Match HTTP request header
  262. */
  263. public function __construct(string $reservationStatus = Values::NONE, string $workerActivitySid = Values::NONE, string $instruction = Values::NONE, string $dequeuePostWorkActivitySid = Values::NONE, string $dequeueFrom = Values::NONE, string $dequeueRecord = Values::NONE, int $dequeueTimeout = Values::NONE, string $dequeueTo = Values::NONE, string $dequeueStatusCallbackUrl = Values::NONE, string $callFrom = Values::NONE, string $callRecord = Values::NONE, int $callTimeout = Values::NONE, string $callTo = Values::NONE, string $callUrl = Values::NONE, string $callStatusCallbackUrl = Values::NONE, bool $callAccept = Values::NONE, string $redirectCallSid = Values::NONE, bool $redirectAccept = Values::NONE, string $redirectUrl = Values::NONE, string $to = Values::NONE, string $from = Values::NONE, string $statusCallback = Values::NONE, string $statusCallbackMethod = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, int $timeout = Values::NONE, bool $record = Values::NONE, bool $muted = Values::NONE, string $beep = Values::NONE, bool $startConferenceOnEnter = Values::NONE, bool $endConferenceOnExit = Values::NONE, string $waitUrl = Values::NONE, string $waitMethod = Values::NONE, bool $earlyMedia = Values::NONE, int $maxParticipants = Values::NONE, string $conferenceStatusCallback = Values::NONE, string $conferenceStatusCallbackMethod = Values::NONE, array $conferenceStatusCallbackEvent = Values::ARRAY_NONE, string $conferenceRecord = Values::NONE, string $conferenceTrim = Values::NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, string $recordingStatusCallbackMethod = Values::NONE, string $conferenceRecordingStatusCallback = Values::NONE, string $conferenceRecordingStatusCallbackMethod = Values::NONE, string $region = Values::NONE, string $sipAuthUsername = Values::NONE, string $sipAuthPassword = Values::NONE, array $dequeueStatusCallbackEvent = Values::ARRAY_NONE, string $postWorkActivitySid = Values::NONE, bool $endConferenceOnCustomerExit = Values::NONE, bool $beepOnCustomerEntrance = Values::NONE, string $ifMatch = Values::NONE) {
  264. $this->options['reservationStatus'] = $reservationStatus;
  265. $this->options['workerActivitySid'] = $workerActivitySid;
  266. $this->options['instruction'] = $instruction;
  267. $this->options['dequeuePostWorkActivitySid'] = $dequeuePostWorkActivitySid;
  268. $this->options['dequeueFrom'] = $dequeueFrom;
  269. $this->options['dequeueRecord'] = $dequeueRecord;
  270. $this->options['dequeueTimeout'] = $dequeueTimeout;
  271. $this->options['dequeueTo'] = $dequeueTo;
  272. $this->options['dequeueStatusCallbackUrl'] = $dequeueStatusCallbackUrl;
  273. $this->options['callFrom'] = $callFrom;
  274. $this->options['callRecord'] = $callRecord;
  275. $this->options['callTimeout'] = $callTimeout;
  276. $this->options['callTo'] = $callTo;
  277. $this->options['callUrl'] = $callUrl;
  278. $this->options['callStatusCallbackUrl'] = $callStatusCallbackUrl;
  279. $this->options['callAccept'] = $callAccept;
  280. $this->options['redirectCallSid'] = $redirectCallSid;
  281. $this->options['redirectAccept'] = $redirectAccept;
  282. $this->options['redirectUrl'] = $redirectUrl;
  283. $this->options['to'] = $to;
  284. $this->options['from'] = $from;
  285. $this->options['statusCallback'] = $statusCallback;
  286. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  287. $this->options['statusCallbackEvent'] = $statusCallbackEvent;
  288. $this->options['timeout'] = $timeout;
  289. $this->options['record'] = $record;
  290. $this->options['muted'] = $muted;
  291. $this->options['beep'] = $beep;
  292. $this->options['startConferenceOnEnter'] = $startConferenceOnEnter;
  293. $this->options['endConferenceOnExit'] = $endConferenceOnExit;
  294. $this->options['waitUrl'] = $waitUrl;
  295. $this->options['waitMethod'] = $waitMethod;
  296. $this->options['earlyMedia'] = $earlyMedia;
  297. $this->options['maxParticipants'] = $maxParticipants;
  298. $this->options['conferenceStatusCallback'] = $conferenceStatusCallback;
  299. $this->options['conferenceStatusCallbackMethod'] = $conferenceStatusCallbackMethod;
  300. $this->options['conferenceStatusCallbackEvent'] = $conferenceStatusCallbackEvent;
  301. $this->options['conferenceRecord'] = $conferenceRecord;
  302. $this->options['conferenceTrim'] = $conferenceTrim;
  303. $this->options['recordingChannels'] = $recordingChannels;
  304. $this->options['recordingStatusCallback'] = $recordingStatusCallback;
  305. $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;
  306. $this->options['conferenceRecordingStatusCallback'] = $conferenceRecordingStatusCallback;
  307. $this->options['conferenceRecordingStatusCallbackMethod'] = $conferenceRecordingStatusCallbackMethod;
  308. $this->options['region'] = $region;
  309. $this->options['sipAuthUsername'] = $sipAuthUsername;
  310. $this->options['sipAuthPassword'] = $sipAuthPassword;
  311. $this->options['dequeueStatusCallbackEvent'] = $dequeueStatusCallbackEvent;
  312. $this->options['postWorkActivitySid'] = $postWorkActivitySid;
  313. $this->options['endConferenceOnCustomerExit'] = $endConferenceOnCustomerExit;
  314. $this->options['beepOnCustomerEntrance'] = $beepOnCustomerEntrance;
  315. $this->options['ifMatch'] = $ifMatch;
  316. }
  317. /**
  318. * The new status of the reservation. Can be: `pending`, `accepted`, `rejected`, `timeout`, `canceled`, or `rescinded`.
  319. *
  320. * @param string $reservationStatus The new status of the reservation
  321. * @return $this Fluent Builder
  322. */
  323. public function setReservationStatus(string $reservationStatus): self {
  324. $this->options['reservationStatus'] = $reservationStatus;
  325. return $this;
  326. }
  327. /**
  328. * The new worker activity SID if rejecting a reservation.
  329. *
  330. * @param string $workerActivitySid The new worker activity SID if rejecting a
  331. * reservation
  332. * @return $this Fluent Builder
  333. */
  334. public function setWorkerActivitySid(string $workerActivitySid): self {
  335. $this->options['workerActivitySid'] = $workerActivitySid;
  336. return $this;
  337. }
  338. /**
  339. * The assignment instruction for the reservation.
  340. *
  341. * @param string $instruction The assignment instruction for the reservation
  342. * @return $this Fluent Builder
  343. */
  344. public function setInstruction(string $instruction): self {
  345. $this->options['instruction'] = $instruction;
  346. return $this;
  347. }
  348. /**
  349. * The SID of the Activity resource to start after executing a Dequeue instruction.
  350. *
  351. * @param string $dequeuePostWorkActivitySid The SID of the Activity resource
  352. * to start after executing a Dequeue
  353. * instruction
  354. * @return $this Fluent Builder
  355. */
  356. public function setDequeuePostWorkActivitySid(string $dequeuePostWorkActivitySid): self {
  357. $this->options['dequeuePostWorkActivitySid'] = $dequeuePostWorkActivitySid;
  358. return $this;
  359. }
  360. /**
  361. * The caller ID of the call to the worker when executing a Dequeue instruction.
  362. *
  363. * @param string $dequeueFrom The caller ID of the call to the worker when
  364. * executing a Dequeue instruction
  365. * @return $this Fluent Builder
  366. */
  367. public function setDequeueFrom(string $dequeueFrom): self {
  368. $this->options['dequeueFrom'] = $dequeueFrom;
  369. return $this;
  370. }
  371. /**
  372. * Whether to record both legs of a call when executing a Dequeue instruction or which leg to record.
  373. *
  374. * @param string $dequeueRecord Whether to record both legs of a call when
  375. * executing a Dequeue instruction
  376. * @return $this Fluent Builder
  377. */
  378. public function setDequeueRecord(string $dequeueRecord): self {
  379. $this->options['dequeueRecord'] = $dequeueRecord;
  380. return $this;
  381. }
  382. /**
  383. * The timeout for call when executing a Dequeue instruction.
  384. *
  385. * @param int $dequeueTimeout The timeout for call when executing a Dequeue
  386. * instruction
  387. * @return $this Fluent Builder
  388. */
  389. public function setDequeueTimeout(int $dequeueTimeout): self {
  390. $this->options['dequeueTimeout'] = $dequeueTimeout;
  391. return $this;
  392. }
  393. /**
  394. * The contact URI of the worker when executing a Dequeue instruction. Can be the URI of the Twilio Client, the SIP URI for Programmable SIP, or the [E.164](https://www.twilio.com/docs/glossary/what-e164) formatted phone number, depending on the destination.
  395. *
  396. * @param string $dequeueTo The contact URI of the worker when executing a
  397. * Dequeue instruction
  398. * @return $this Fluent Builder
  399. */
  400. public function setDequeueTo(string $dequeueTo): self {
  401. $this->options['dequeueTo'] = $dequeueTo;
  402. return $this;
  403. }
  404. /**
  405. * The callback URL for completed call event when executing a Dequeue instruction.
  406. *
  407. * @param string $dequeueStatusCallbackUrl The callback URL for completed call
  408. * event when executing a Dequeue
  409. * instruction
  410. * @return $this Fluent Builder
  411. */
  412. public function setDequeueStatusCallbackUrl(string $dequeueStatusCallbackUrl): self {
  413. $this->options['dequeueStatusCallbackUrl'] = $dequeueStatusCallbackUrl;
  414. return $this;
  415. }
  416. /**
  417. * The Caller ID of the outbound call when executing a Call instruction.
  418. *
  419. * @param string $callFrom The Caller ID of the outbound call when executing a
  420. * Call instruction
  421. * @return $this Fluent Builder
  422. */
  423. public function setCallFrom(string $callFrom): self {
  424. $this->options['callFrom'] = $callFrom;
  425. return $this;
  426. }
  427. /**
  428. * Whether to record both legs of a call when executing a Call instruction.
  429. *
  430. * @param string $callRecord Whether to record both legs of a call when
  431. * executing a Call instruction
  432. * @return $this Fluent Builder
  433. */
  434. public function setCallRecord(string $callRecord): self {
  435. $this->options['callRecord'] = $callRecord;
  436. return $this;
  437. }
  438. /**
  439. * The timeout for a call when executing a Call instruction.
  440. *
  441. * @param int $callTimeout The timeout for a call when executing a Call
  442. * instruction
  443. * @return $this Fluent Builder
  444. */
  445. public function setCallTimeout(int $callTimeout): self {
  446. $this->options['callTimeout'] = $callTimeout;
  447. return $this;
  448. }
  449. /**
  450. * The contact URI of the worker when executing a Call instruction. Can be the URI of the Twilio Client, the SIP URI for Programmable SIP, or the [E.164](https://www.twilio.com/docs/glossary/what-e164) formatted phone number, depending on the destination.
  451. *
  452. * @param string $callTo The contact URI of the worker when executing a Call
  453. * instruction
  454. * @return $this Fluent Builder
  455. */
  456. public function setCallTo(string $callTo): self {
  457. $this->options['callTo'] = $callTo;
  458. return $this;
  459. }
  460. /**
  461. * TwiML URI executed on answering the worker's leg as a result of the Call instruction.
  462. *
  463. * @param string $callUrl TwiML URI executed on answering the worker's leg as a
  464. * result of the Call instruction
  465. * @return $this Fluent Builder
  466. */
  467. public function setCallUrl(string $callUrl): self {
  468. $this->options['callUrl'] = $callUrl;
  469. return $this;
  470. }
  471. /**
  472. * The URL to call for the completed call event when executing a Call instruction.
  473. *
  474. * @param string $callStatusCallbackUrl The URL to call for the completed call
  475. * event when executing a Call instruction
  476. * @return $this Fluent Builder
  477. */
  478. public function setCallStatusCallbackUrl(string $callStatusCallbackUrl): self {
  479. $this->options['callStatusCallbackUrl'] = $callStatusCallbackUrl;
  480. return $this;
  481. }
  482. /**
  483. * Whether to accept a reservation when executing a Call instruction.
  484. *
  485. * @param bool $callAccept Whether to accept a reservation when executing a
  486. * Call instruction
  487. * @return $this Fluent Builder
  488. */
  489. public function setCallAccept(bool $callAccept): self {
  490. $this->options['callAccept'] = $callAccept;
  491. return $this;
  492. }
  493. /**
  494. * The Call SID of the call parked in the queue when executing a Redirect instruction.
  495. *
  496. * @param string $redirectCallSid The Call SID of the call parked in the queue
  497. * when executing a Redirect instruction
  498. * @return $this Fluent Builder
  499. */
  500. public function setRedirectCallSid(string $redirectCallSid): self {
  501. $this->options['redirectCallSid'] = $redirectCallSid;
  502. return $this;
  503. }
  504. /**
  505. * Whether the reservation should be accepted when executing a Redirect instruction.
  506. *
  507. * @param bool $redirectAccept Whether the reservation should be accepted when
  508. * executing a Redirect instruction
  509. * @return $this Fluent Builder
  510. */
  511. public function setRedirectAccept(bool $redirectAccept): self {
  512. $this->options['redirectAccept'] = $redirectAccept;
  513. return $this;
  514. }
  515. /**
  516. * TwiML URI to redirect the call to when executing the Redirect instruction.
  517. *
  518. * @param string $redirectUrl TwiML URI to redirect the call to when executing
  519. * the Redirect instruction
  520. * @return $this Fluent Builder
  521. */
  522. public function setRedirectUrl(string $redirectUrl): self {
  523. $this->options['redirectUrl'] = $redirectUrl;
  524. return $this;
  525. }
  526. /**
  527. * The Contact URI of the worker when executing a Conference instruction. Can be the URI of the Twilio Client, the SIP URI for Programmable SIP, or the [E.164](https://www.twilio.com/docs/glossary/what-e164) formatted phone number, depending on the destination.
  528. *
  529. * @param string $to The Contact URI of the worker when executing a Conference
  530. * instruction
  531. * @return $this Fluent Builder
  532. */
  533. public function setTo(string $to): self {
  534. $this->options['to'] = $to;
  535. return $this;
  536. }
  537. /**
  538. * The caller ID of the call to the worker when executing a Conference instruction.
  539. *
  540. * @param string $from The caller ID of the call to the worker when executing a
  541. * Conference instruction
  542. * @return $this Fluent Builder
  543. */
  544. public function setFrom(string $from): self {
  545. $this->options['from'] = $from;
  546. return $this;
  547. }
  548. /**
  549. * The URL we should call using the `status_callback_method` to send status information to your application.
  550. *
  551. * @param string $statusCallback The URL we should call to send status
  552. * information to your application
  553. * @return $this Fluent Builder
  554. */
  555. public function setStatusCallback(string $statusCallback): self {
  556. $this->options['statusCallback'] = $statusCallback;
  557. return $this;
  558. }
  559. /**
  560. * The HTTP method we should use to call `status_callback`. Can be: `POST` or `GET` and the default is `POST`.
  561. *
  562. * @param string $statusCallbackMethod The HTTP method we should use to call
  563. * status_callback
  564. * @return $this Fluent Builder
  565. */
  566. public function setStatusCallbackMethod(string $statusCallbackMethod): self {
  567. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  568. return $this;
  569. }
  570. /**
  571. * The call progress events that we will send to `status_callback`. Can be: `initiated`, `ringing`, `answered`, or `completed`.
  572. *
  573. * @param string[] $statusCallbackEvent The call progress events that we will
  574. * send to status_callback
  575. * @return $this Fluent Builder
  576. */
  577. public function setStatusCallbackEvent(array $statusCallbackEvent): self {
  578. $this->options['statusCallbackEvent'] = $statusCallbackEvent;
  579. return $this;
  580. }
  581. /**
  582. * The timeout for a call when executing a Conference instruction.
  583. *
  584. * @param int $timeout The timeout for a call when executing a Conference
  585. * instruction
  586. * @return $this Fluent Builder
  587. */
  588. public function setTimeout(int $timeout): self {
  589. $this->options['timeout'] = $timeout;
  590. return $this;
  591. }
  592. /**
  593. * Whether to record the participant and their conferences, including the time between conferences. Can be `true` or `false` and the default is `false`.
  594. *
  595. * @param bool $record Whether to record the participant and their conferences
  596. * @return $this Fluent Builder
  597. */
  598. public function setRecord(bool $record): self {
  599. $this->options['record'] = $record;
  600. return $this;
  601. }
  602. /**
  603. * Whether the agent is muted in the conference. Defaults to `false`.
  604. *
  605. * @param bool $muted Whether to mute the agent
  606. * @return $this Fluent Builder
  607. */
  608. public function setMuted(bool $muted): self {
  609. $this->options['muted'] = $muted;
  610. return $this;
  611. }
  612. /**
  613. * Whether to play a notification beep when the participant joins or when to play a beep. Can be: `true`, `false`, `onEnter`, or `onExit`. The default value is `true`.
  614. *
  615. * @param string $beep Whether to play a notification beep when the participant
  616. * joins
  617. * @return $this Fluent Builder
  618. */
  619. public function setBeep(string $beep): self {
  620. $this->options['beep'] = $beep;
  621. return $this;
  622. }
  623. /**
  624. * Whether to start the conference when the participant joins, if it has not already started. Can be: `true` or `false` and the default is `true`. If `false` and the conference has not started, the participant is muted and hears background music until another participant starts the conference.
  625. *
  626. * @param bool $startConferenceOnEnter Whether the conference starts when the
  627. * participant joins the conference
  628. * @return $this Fluent Builder
  629. */
  630. public function setStartConferenceOnEnter(bool $startConferenceOnEnter): self {
  631. $this->options['startConferenceOnEnter'] = $startConferenceOnEnter;
  632. return $this;
  633. }
  634. /**
  635. * Whether to end the conference when the agent leaves.
  636. *
  637. * @param bool $endConferenceOnExit Whether to end the conference when the
  638. * agent leaves
  639. * @return $this Fluent Builder
  640. */
  641. public function setEndConferenceOnExit(bool $endConferenceOnExit): self {
  642. $this->options['endConferenceOnExit'] = $endConferenceOnExit;
  643. return $this;
  644. }
  645. /**
  646. * The URL we should call using the `wait_method` for the music to play while participants are waiting for the conference to start. The default value is the URL of our standard hold music. [Learn more about hold music](https://www.twilio.com/labs/twimlets/holdmusic).
  647. *
  648. * @param string $waitUrl URL that hosts pre-conference hold music
  649. * @return $this Fluent Builder
  650. */
  651. public function setWaitUrl(string $waitUrl): self {
  652. $this->options['waitUrl'] = $waitUrl;
  653. return $this;
  654. }
  655. /**
  656. * The HTTP method we should use to call `wait_url`. Can be `GET` or `POST` and the default is `POST`. When using a static audio file, this should be `GET` so that we can cache the file.
  657. *
  658. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  659. * @return $this Fluent Builder
  660. */
  661. public function setWaitMethod(string $waitMethod): self {
  662. $this->options['waitMethod'] = $waitMethod;
  663. return $this;
  664. }
  665. /**
  666. * Whether to allow an agent to hear the state of the outbound call, including ringing or disconnect messages. The default is `true`.
  667. *
  668. * @param bool $earlyMedia Whether agents can hear the state of the outbound
  669. * call
  670. * @return $this Fluent Builder
  671. */
  672. public function setEarlyMedia(bool $earlyMedia): self {
  673. $this->options['earlyMedia'] = $earlyMedia;
  674. return $this;
  675. }
  676. /**
  677. * The maximum number of participants allowed in the conference. Can be a positive integer from `2` to `250`. The default value is `250`.
  678. *
  679. * @param int $maxParticipants The maximum number of agent conference
  680. * participants
  681. * @return $this Fluent Builder
  682. */
  683. public function setMaxParticipants(int $maxParticipants): self {
  684. $this->options['maxParticipants'] = $maxParticipants;
  685. return $this;
  686. }
  687. /**
  688. * The URL we should call using the `conference_status_callback_method` when the conference events in `conference_status_callback_event` occur. Only the value set by the first participant to join the conference is used. Subsequent `conference_status_callback` values are ignored.
  689. *
  690. * @param string $conferenceStatusCallback The callback URL for conference
  691. * events
  692. * @return $this Fluent Builder
  693. */
  694. public function setConferenceStatusCallback(string $conferenceStatusCallback): self {
  695. $this->options['conferenceStatusCallback'] = $conferenceStatusCallback;
  696. return $this;
  697. }
  698. /**
  699. * The HTTP method we should use to call `conference_status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
  700. *
  701. * @param string $conferenceStatusCallbackMethod HTTP method for requesting
  702. * `conference_status_callback`
  703. * URL
  704. * @return $this Fluent Builder
  705. */
  706. public function setConferenceStatusCallbackMethod(string $conferenceStatusCallbackMethod): self {
  707. $this->options['conferenceStatusCallbackMethod'] = $conferenceStatusCallbackMethod;
  708. return $this;
  709. }
  710. /**
  711. * The conference status events that we will send to `conference_status_callback`. Can be: `start`, `end`, `join`, `leave`, `mute`, `hold`, `speaker`.
  712. *
  713. * @param string[] $conferenceStatusCallbackEvent The conference status events
  714. * that we will send to
  715. * conference_status_callback
  716. * @return $this Fluent Builder
  717. */
  718. public function setConferenceStatusCallbackEvent(array $conferenceStatusCallbackEvent): self {
  719. $this->options['conferenceStatusCallbackEvent'] = $conferenceStatusCallbackEvent;
  720. return $this;
  721. }
  722. /**
  723. * Whether to record the conference the participant is joining or when to record the conference. Can be: `true`, `false`, `record-from-start`, and `do-not-record`. The default value is `false`.
  724. *
  725. * @param string $conferenceRecord Whether to record the conference the
  726. * participant is joining
  727. * @return $this Fluent Builder
  728. */
  729. public function setConferenceRecord(string $conferenceRecord): self {
  730. $this->options['conferenceRecord'] = $conferenceRecord;
  731. return $this;
  732. }
  733. /**
  734. * Whether to trim leading and trailing silence from your recorded conference audio files. Can be: `trim-silence` or `do-not-trim` and defaults to `trim-silence`.
  735. *
  736. * @param string $conferenceTrim Whether to trim leading and trailing silence
  737. * from your recorded conference audio files
  738. * @return $this Fluent Builder
  739. */
  740. public function setConferenceTrim(string $conferenceTrim): self {
  741. $this->options['conferenceTrim'] = $conferenceTrim;
  742. return $this;
  743. }
  744. /**
  745. * The recording channels for the final recording. Can be: `mono` or `dual` and the default is `mono`.
  746. *
  747. * @param string $recordingChannels Specify `mono` or `dual` recording channels
  748. * @return $this Fluent Builder
  749. */
  750. public function setRecordingChannels(string $recordingChannels): self {
  751. $this->options['recordingChannels'] = $recordingChannels;
  752. return $this;
  753. }
  754. /**
  755. * The URL that we should call using the `recording_status_callback_method` when the recording status changes.
  756. *
  757. * @param string $recordingStatusCallback The URL that we should call using the
  758. * `recording_status_callback_method`
  759. * when the recording status changes
  760. * @return $this Fluent Builder
  761. */
  762. public function setRecordingStatusCallback(string $recordingStatusCallback): self {
  763. $this->options['recordingStatusCallback'] = $recordingStatusCallback;
  764. return $this;
  765. }
  766. /**
  767. * The HTTP method we should use when we call `recording_status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
  768. *
  769. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  770. * when we call
  771. * `recording_status_callback`
  772. * @return $this Fluent Builder
  773. */
  774. public function setRecordingStatusCallbackMethod(string $recordingStatusCallbackMethod): self {
  775. $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;
  776. return $this;
  777. }
  778. /**
  779. * The URL we should call using the `conference_recording_status_callback_method` when the conference recording is available.
  780. *
  781. * @param string $conferenceRecordingStatusCallback The URL we should call
  782. * using the
  783. * `conference_recording_status_callback_method` when the conference recording is available
  784. * @return $this Fluent Builder
  785. */
  786. public function setConferenceRecordingStatusCallback(string $conferenceRecordingStatusCallback): self {
  787. $this->options['conferenceRecordingStatusCallback'] = $conferenceRecordingStatusCallback;
  788. return $this;
  789. }
  790. /**
  791. * The HTTP method we should use to call `conference_recording_status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
  792. *
  793. * @param string $conferenceRecordingStatusCallbackMethod The HTTP method we
  794. * should use to call
  795. * `conference_recording_status_callback`
  796. * @return $this Fluent Builder
  797. */
  798. public function setConferenceRecordingStatusCallbackMethod(string $conferenceRecordingStatusCallbackMethod): self {
  799. $this->options['conferenceRecordingStatusCallbackMethod'] = $conferenceRecordingStatusCallbackMethod;
  800. return $this;
  801. }
  802. /**
  803. * The [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls) where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, or `jp1`.
  804. *
  805. * @param string $region The region where we should mix the conference audio
  806. * @return $this Fluent Builder
  807. */
  808. public function setRegion(string $region): self {
  809. $this->options['region'] = $region;
  810. return $this;
  811. }
  812. /**
  813. * The SIP username used for authentication.
  814. *
  815. * @param string $sipAuthUsername The SIP username used for authentication
  816. * @return $this Fluent Builder
  817. */
  818. public function setSipAuthUsername(string $sipAuthUsername): self {
  819. $this->options['sipAuthUsername'] = $sipAuthUsername;
  820. return $this;
  821. }
  822. /**
  823. * The SIP password for authentication.
  824. *
  825. * @param string $sipAuthPassword The SIP password for authentication
  826. * @return $this Fluent Builder
  827. */
  828. public function setSipAuthPassword(string $sipAuthPassword): self {
  829. $this->options['sipAuthPassword'] = $sipAuthPassword;
  830. return $this;
  831. }
  832. /**
  833. * The call progress events sent via webhooks as a result of a Dequeue instruction.
  834. *
  835. * @param string[] $dequeueStatusCallbackEvent The call progress events sent
  836. * via webhooks as a result of a
  837. * Dequeue instruction
  838. * @return $this Fluent Builder
  839. */
  840. public function setDequeueStatusCallbackEvent(array $dequeueStatusCallbackEvent): self {
  841. $this->options['dequeueStatusCallbackEvent'] = $dequeueStatusCallbackEvent;
  842. return $this;
  843. }
  844. /**
  845. * The new worker activity SID after executing a Conference instruction.
  846. *
  847. * @param string $postWorkActivitySid The new worker activity SID after
  848. * executing a Conference instruction
  849. * @return $this Fluent Builder
  850. */
  851. public function setPostWorkActivitySid(string $postWorkActivitySid): self {
  852. $this->options['postWorkActivitySid'] = $postWorkActivitySid;
  853. return $this;
  854. }
  855. /**
  856. * Whether to end the conference when the customer leaves.
  857. *
  858. * @param bool $endConferenceOnCustomerExit Whether to end the conference when
  859. * the customer leaves
  860. * @return $this Fluent Builder
  861. */
  862. public fu