/src/main/java/com/twilio/rest/taskrouter/v1/workspace/worker/ReservationUpdater.java

http://github.com/twilio/twilio-java · Java · 1174 lines · 509 code · 125 blank · 540 comment · 113 complexity · 31f8e6f33932d94ce80abc959366659a MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.taskrouter.v1.workspace.worker;
  8. import com.twilio.base.Updater;
  9. import com.twilio.converter.Promoter;
  10. import com.twilio.exception.ApiConnectionException;
  11. import com.twilio.exception.ApiException;
  12. import com.twilio.exception.RestException;
  13. import com.twilio.http.HttpMethod;
  14. import com.twilio.http.Request;
  15. import com.twilio.http.Response;
  16. import com.twilio.http.TwilioRestClient;
  17. import com.twilio.rest.Domains;
  18. import java.net.URI;
  19. import java.util.List;
  20. public class ReservationUpdater extends Updater<Reservation> {
  21. private final String pathWorkspaceSid;
  22. private final String pathWorkerSid;
  23. private final String pathSid;
  24. private Reservation.Status reservationStatus;
  25. private String workerActivitySid;
  26. private String instruction;
  27. private String dequeuePostWorkActivitySid;
  28. private String dequeueFrom;
  29. private String dequeueRecord;
  30. private Integer dequeueTimeout;
  31. private String dequeueTo;
  32. private URI dequeueStatusCallbackUrl;
  33. private String callFrom;
  34. private String callRecord;
  35. private Integer callTimeout;
  36. private String callTo;
  37. private URI callUrl;
  38. private URI callStatusCallbackUrl;
  39. private Boolean callAccept;
  40. private String redirectCallSid;
  41. private Boolean redirectAccept;
  42. private URI redirectUrl;
  43. private String to;
  44. private String from;
  45. private URI statusCallback;
  46. private HttpMethod statusCallbackMethod;
  47. private List<Reservation.CallStatus> statusCallbackEvent;
  48. private Integer timeout;
  49. private Boolean record;
  50. private Boolean muted;
  51. private String beep;
  52. private Boolean startConferenceOnEnter;
  53. private Boolean endConferenceOnExit;
  54. private URI waitUrl;
  55. private HttpMethod waitMethod;
  56. private Boolean earlyMedia;
  57. private Integer maxParticipants;
  58. private URI conferenceStatusCallback;
  59. private HttpMethod conferenceStatusCallbackMethod;
  60. private List<Reservation.ConferenceEvent> conferenceStatusCallbackEvent;
  61. private String conferenceRecord;
  62. private String conferenceTrim;
  63. private String recordingChannels;
  64. private URI recordingStatusCallback;
  65. private HttpMethod recordingStatusCallbackMethod;
  66. private URI conferenceRecordingStatusCallback;
  67. private HttpMethod conferenceRecordingStatusCallbackMethod;
  68. private String region;
  69. private String sipAuthUsername;
  70. private String sipAuthPassword;
  71. private List<String> dequeueStatusCallbackEvent;
  72. private String postWorkActivitySid;
  73. private Boolean endConferenceOnCustomerExit;
  74. private Boolean beepOnCustomerEntrance;
  75. private String ifMatch;
  76. /**
  77. * Construct a new ReservationUpdater.
  78. *
  79. * @param pathWorkspaceSid The SID of the Workspace with the WorkerReservation
  80. * resources to update
  81. * @param pathWorkerSid The SID of the reserved Worker resource with the
  82. * WorkerReservation resources to update
  83. * @param pathSid The SID of the WorkerReservation resource to update
  84. */
  85. public ReservationUpdater(final String pathWorkspaceSid,
  86. final String pathWorkerSid,
  87. final String pathSid) {
  88. this.pathWorkspaceSid = pathWorkspaceSid;
  89. this.pathWorkerSid = pathWorkerSid;
  90. this.pathSid = pathSid;
  91. }
  92. /**
  93. * The new status of the reservation. Can be: `pending`, `accepted`, `rejected`,
  94. * `timeout`, `canceled`, or `rescinded`..
  95. *
  96. * @param reservationStatus The new status of the reservation
  97. * @return this
  98. */
  99. public ReservationUpdater setReservationStatus(final Reservation.Status reservationStatus) {
  100. this.reservationStatus = reservationStatus;
  101. return this;
  102. }
  103. /**
  104. * The new worker activity SID if rejecting a reservation..
  105. *
  106. * @param workerActivitySid The new worker activity SID if rejecting a
  107. * reservation
  108. * @return this
  109. */
  110. public ReservationUpdater setWorkerActivitySid(final String workerActivitySid) {
  111. this.workerActivitySid = workerActivitySid;
  112. return this;
  113. }
  114. /**
  115. * The assignment instruction for the reservation..
  116. *
  117. * @param instruction The assignment instruction for the reservation
  118. * @return this
  119. */
  120. public ReservationUpdater setInstruction(final String instruction) {
  121. this.instruction = instruction;
  122. return this;
  123. }
  124. /**
  125. * The SID of the Activity resource to start after executing a Dequeue
  126. * instruction..
  127. *
  128. * @param dequeuePostWorkActivitySid The SID of the Activity resource to start
  129. * after executing a Dequeue instruction
  130. * @return this
  131. */
  132. public ReservationUpdater setDequeuePostWorkActivitySid(final String dequeuePostWorkActivitySid) {
  133. this.dequeuePostWorkActivitySid = dequeuePostWorkActivitySid;
  134. return this;
  135. }
  136. /**
  137. * The caller ID of the call to the worker when executing a Dequeue
  138. * instruction..
  139. *
  140. * @param dequeueFrom The caller ID of the call to the worker when executing a
  141. * Dequeue instruction
  142. * @return this
  143. */
  144. public ReservationUpdater setDequeueFrom(final String dequeueFrom) {
  145. this.dequeueFrom = dequeueFrom;
  146. return this;
  147. }
  148. /**
  149. * Whether to record both legs of a call when executing a Dequeue instruction or
  150. * which leg to record..
  151. *
  152. * @param dequeueRecord Whether to record both legs of a call when executing a
  153. * Dequeue instruction
  154. * @return this
  155. */
  156. public ReservationUpdater setDequeueRecord(final String dequeueRecord) {
  157. this.dequeueRecord = dequeueRecord;
  158. return this;
  159. }
  160. /**
  161. * The timeout for call when executing a Dequeue instruction..
  162. *
  163. * @param dequeueTimeout The timeout for call when executing a Dequeue
  164. * instruction
  165. * @return this
  166. */
  167. public ReservationUpdater setDequeueTimeout(final Integer dequeueTimeout) {
  168. this.dequeueTimeout = dequeueTimeout;
  169. return this;
  170. }
  171. /**
  172. * The contact URI of the worker when executing a Dequeue instruction. Can be
  173. * the URI of the Twilio Client, the SIP URI for Programmable SIP, or the <a
  174. * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> formatted
  175. * phone number, depending on the destination..
  176. *
  177. * @param dequeueTo The contact URI of the worker when executing a Dequeue
  178. * instruction
  179. * @return this
  180. */
  181. public ReservationUpdater setDequeueTo(final String dequeueTo) {
  182. this.dequeueTo = dequeueTo;
  183. return this;
  184. }
  185. /**
  186. * The callback URL for completed call event when executing a Dequeue
  187. * instruction..
  188. *
  189. * @param dequeueStatusCallbackUrl The callback URL for completed call event
  190. * when executing a Dequeue instruction
  191. * @return this
  192. */
  193. public ReservationUpdater setDequeueStatusCallbackUrl(final URI dequeueStatusCallbackUrl) {
  194. this.dequeueStatusCallbackUrl = dequeueStatusCallbackUrl;
  195. return this;
  196. }
  197. /**
  198. * The callback URL for completed call event when executing a Dequeue
  199. * instruction..
  200. *
  201. * @param dequeueStatusCallbackUrl The callback URL for completed call event
  202. * when executing a Dequeue instruction
  203. * @return this
  204. */
  205. public ReservationUpdater setDequeueStatusCallbackUrl(final String dequeueStatusCallbackUrl) {
  206. return setDequeueStatusCallbackUrl(Promoter.uriFromString(dequeueStatusCallbackUrl));
  207. }
  208. /**
  209. * The Caller ID of the outbound call when executing a Call instruction..
  210. *
  211. * @param callFrom The Caller ID of the outbound call when executing a Call
  212. * instruction
  213. * @return this
  214. */
  215. public ReservationUpdater setCallFrom(final String callFrom) {
  216. this.callFrom = callFrom;
  217. return this;
  218. }
  219. /**
  220. * Whether to record both legs of a call when executing a Call instruction..
  221. *
  222. * @param callRecord Whether to record both legs of a call when executing a
  223. * Call instruction
  224. * @return this
  225. */
  226. public ReservationUpdater setCallRecord(final String callRecord) {
  227. this.callRecord = callRecord;
  228. return this;
  229. }
  230. /**
  231. * The timeout for a call when executing a Call instruction..
  232. *
  233. * @param callTimeout The timeout for a call when executing a Call instruction
  234. * @return this
  235. */
  236. public ReservationUpdater setCallTimeout(final Integer callTimeout) {
  237. this.callTimeout = callTimeout;
  238. return this;
  239. }
  240. /**
  241. * The contact URI of the worker when executing a Call instruction. Can be the
  242. * URI of the Twilio Client, the SIP URI for Programmable SIP, or the <a
  243. * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> formatted
  244. * phone number, depending on the destination..
  245. *
  246. * @param callTo The contact URI of the worker when executing a Call instruction
  247. * @return this
  248. */
  249. public ReservationUpdater setCallTo(final String callTo) {
  250. this.callTo = callTo;
  251. return this;
  252. }
  253. /**
  254. * TwiML URI executed on answering the worker's leg as a result of the Call
  255. * instruction..
  256. *
  257. * @param callUrl TwiML URI executed on answering the worker's leg as a result
  258. * of the Call instruction
  259. * @return this
  260. */
  261. public ReservationUpdater setCallUrl(final URI callUrl) {
  262. this.callUrl = callUrl;
  263. return this;
  264. }
  265. /**
  266. * TwiML URI executed on answering the worker's leg as a result of the Call
  267. * instruction..
  268. *
  269. * @param callUrl TwiML URI executed on answering the worker's leg as a result
  270. * of the Call instruction
  271. * @return this
  272. */
  273. public ReservationUpdater setCallUrl(final String callUrl) {
  274. return setCallUrl(Promoter.uriFromString(callUrl));
  275. }
  276. /**
  277. * The URL to call for the completed call event when executing a Call
  278. * instruction..
  279. *
  280. * @param callStatusCallbackUrl The URL to call for the completed call event
  281. * when executing a Call instruction
  282. * @return this
  283. */
  284. public ReservationUpdater setCallStatusCallbackUrl(final URI callStatusCallbackUrl) {
  285. this.callStatusCallbackUrl = callStatusCallbackUrl;
  286. return this;
  287. }
  288. /**
  289. * The URL to call for the completed call event when executing a Call
  290. * instruction..
  291. *
  292. * @param callStatusCallbackUrl The URL to call for the completed call event
  293. * when executing a Call instruction
  294. * @return this
  295. */
  296. public ReservationUpdater setCallStatusCallbackUrl(final String callStatusCallbackUrl) {
  297. return setCallStatusCallbackUrl(Promoter.uriFromString(callStatusCallbackUrl));
  298. }
  299. /**
  300. * Whether to accept a reservation when executing a Call instruction..
  301. *
  302. * @param callAccept Whether to accept a reservation when executing a Call
  303. * instruction
  304. * @return this
  305. */
  306. public ReservationUpdater setCallAccept(final Boolean callAccept) {
  307. this.callAccept = callAccept;
  308. return this;
  309. }
  310. /**
  311. * The Call SID of the call parked in the queue when executing a Redirect
  312. * instruction..
  313. *
  314. * @param redirectCallSid The Call SID of the call parked in the queue when
  315. * executing a Redirect instruction
  316. * @return this
  317. */
  318. public ReservationUpdater setRedirectCallSid(final String redirectCallSid) {
  319. this.redirectCallSid = redirectCallSid;
  320. return this;
  321. }
  322. /**
  323. * Whether the reservation should be accepted when executing a Redirect
  324. * instruction..
  325. *
  326. * @param redirectAccept Whether the reservation should be accepted when
  327. * executing a Redirect instruction
  328. * @return this
  329. */
  330. public ReservationUpdater setRedirectAccept(final Boolean redirectAccept) {
  331. this.redirectAccept = redirectAccept;
  332. return this;
  333. }
  334. /**
  335. * TwiML URI to redirect the call to when executing the Redirect instruction..
  336. *
  337. * @param redirectUrl TwiML URI to redirect the call to when executing the
  338. * Redirect instruction
  339. * @return this
  340. */
  341. public ReservationUpdater setRedirectUrl(final URI redirectUrl) {
  342. this.redirectUrl = redirectUrl;
  343. return this;
  344. }
  345. /**
  346. * TwiML URI to redirect the call to when executing the Redirect instruction..
  347. *
  348. * @param redirectUrl TwiML URI to redirect the call to when executing the
  349. * Redirect instruction
  350. * @return this
  351. */
  352. public ReservationUpdater setRedirectUrl(final String redirectUrl) {
  353. return setRedirectUrl(Promoter.uriFromString(redirectUrl));
  354. }
  355. /**
  356. * The Contact URI of the worker when executing a Conference instruction. Can be
  357. * the URI of the Twilio Client, the SIP URI for Programmable SIP, or the <a
  358. * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> formatted
  359. * phone number, depending on the destination..
  360. *
  361. * @param to The Contact URI of the worker when executing a Conference
  362. * instruction
  363. * @return this
  364. */
  365. public ReservationUpdater setTo(final String to) {
  366. this.to = to;
  367. return this;
  368. }
  369. /**
  370. * The caller ID of the call to the worker when executing a Conference
  371. * instruction..
  372. *
  373. * @param from The caller ID of the call to the worker when executing a
  374. * Conference instruction
  375. * @return this
  376. */
  377. public ReservationUpdater setFrom(final String from) {
  378. this.from = from;
  379. return this;
  380. }
  381. /**
  382. * The URL we should call using the `status_callback_method` to send status
  383. * information to your application..
  384. *
  385. * @param statusCallback The URL we should call to send status information to
  386. * your application
  387. * @return this
  388. */
  389. public ReservationUpdater setStatusCallback(final URI statusCallback) {
  390. this.statusCallback = statusCallback;
  391. return this;
  392. }
  393. /**
  394. * The URL we should call using the `status_callback_method` to send status
  395. * information to your application..
  396. *
  397. * @param statusCallback The URL we should call to send status information to
  398. * your application
  399. * @return this
  400. */
  401. public ReservationUpdater setStatusCallback(final String statusCallback) {
  402. return setStatusCallback(Promoter.uriFromString(statusCallback));
  403. }
  404. /**
  405. * The HTTP method we should use to call `status_callback`. Can be: `POST` or
  406. * `GET` and the default is `POST`..
  407. *
  408. * @param statusCallbackMethod The HTTP method we should use to call
  409. * status_callback
  410. * @return this
  411. */
  412. public ReservationUpdater setStatusCallbackMethod(final HttpMethod statusCallbackMethod) {
  413. this.statusCallbackMethod = statusCallbackMethod;
  414. return this;
  415. }
  416. /**
  417. * The call progress events that we will send to `status_callback`. Can be:
  418. * `initiated`, `ringing`, `answered`, or `completed`..
  419. *
  420. * @param statusCallbackEvent The call progress events that we will send to
  421. * status_callback
  422. * @return this
  423. */
  424. public ReservationUpdater setStatusCallbackEvent(final List<Reservation.CallStatus> statusCallbackEvent) {
  425. this.statusCallbackEvent = statusCallbackEvent;
  426. return this;
  427. }
  428. /**
  429. * The call progress events that we will send to `status_callback`. Can be:
  430. * `initiated`, `ringing`, `answered`, or `completed`..
  431. *
  432. * @param statusCallbackEvent The call progress events that we will send to
  433. * status_callback
  434. * @return this
  435. */
  436. public ReservationUpdater setStatusCallbackEvent(final Reservation.CallStatus statusCallbackEvent) {
  437. return setStatusCallbackEvent(Promoter.listOfOne(statusCallbackEvent));
  438. }
  439. /**
  440. * The timeout for a call when executing a Conference instruction..
  441. *
  442. * @param timeout The timeout for a call when executing a Conference instruction
  443. * @return this
  444. */
  445. public ReservationUpdater setTimeout(final Integer timeout) {
  446. this.timeout = timeout;
  447. return this;
  448. }
  449. /**
  450. * Whether to record the participant and their conferences, including the time
  451. * between conferences. Can be `true` or `false` and the default is `false`..
  452. *
  453. * @param record Whether to record the participant and their conferences
  454. * @return this
  455. */
  456. public ReservationUpdater setRecord(final Boolean record) {
  457. this.record = record;
  458. return this;
  459. }
  460. /**
  461. * Whether the agent is muted in the conference. Defaults to `false`..
  462. *
  463. * @param muted Whether to mute the agent
  464. * @return this
  465. */
  466. public ReservationUpdater setMuted(final Boolean muted) {
  467. this.muted = muted;
  468. return this;
  469. }
  470. /**
  471. * Whether to play a notification beep when the participant joins or when to
  472. * play a beep. Can be: `true`, `false`, `onEnter`, or `onExit`. The default
  473. * value is `true`..
  474. *
  475. * @param beep Whether to play a notification beep when the participant joins
  476. * @return this
  477. */
  478. public ReservationUpdater setBeep(final String beep) {
  479. this.beep = beep;
  480. return this;
  481. }
  482. /**
  483. * Whether to start the conference when the participant joins, if it has not
  484. * already started. Can be: `true` or `false` and the default is `true`. If
  485. * `false` and the conference has not started, the participant is muted and
  486. * hears background music until another participant starts the conference..
  487. *
  488. * @param startConferenceOnEnter Whether the conference starts when the
  489. * participant joins the conference
  490. * @return this
  491. */
  492. public ReservationUpdater setStartConferenceOnEnter(final Boolean startConferenceOnEnter) {
  493. this.startConferenceOnEnter = startConferenceOnEnter;
  494. return this;
  495. }
  496. /**
  497. * Whether to end the conference when the agent leaves..
  498. *
  499. * @param endConferenceOnExit Whether to end the conference when the agent
  500. * leaves
  501. * @return this
  502. */
  503. public ReservationUpdater setEndConferenceOnExit(final Boolean endConferenceOnExit) {
  504. this.endConferenceOnExit = endConferenceOnExit;
  505. return this;
  506. }
  507. /**
  508. * The URL we should call using the `wait_method` for the music to play while
  509. * participants are waiting for the conference to start. The default value is
  510. * the URL of our standard hold music. <a
  511. * href="https://www.twilio.com/labs/twimlets/holdmusic">Learn more about hold
  512. * music</a>..
  513. *
  514. * @param waitUrl URL that hosts pre-conference hold music
  515. * @return this
  516. */
  517. public ReservationUpdater setWaitUrl(final URI waitUrl) {
  518. this.waitUrl = waitUrl;
  519. return this;
  520. }
  521. /**
  522. * The URL we should call using the `wait_method` for the music to play while
  523. * participants are waiting for the conference to start. The default value is
  524. * the URL of our standard hold music. <a
  525. * href="https://www.twilio.com/labs/twimlets/holdmusic">Learn more about hold
  526. * music</a>..
  527. *
  528. * @param waitUrl URL that hosts pre-conference hold music
  529. * @return this
  530. */
  531. public ReservationUpdater setWaitUrl(final String waitUrl) {
  532. return setWaitUrl(Promoter.uriFromString(waitUrl));
  533. }
  534. /**
  535. * The HTTP method we should use to call `wait_url`. Can be `GET` or `POST` and
  536. * the default is `POST`. When using a static audio file, this should be `GET`
  537. * so that we can cache the file..
  538. *
  539. * @param waitMethod The HTTP method we should use to call `wait_url`
  540. * @return this
  541. */
  542. public ReservationUpdater setWaitMethod(final HttpMethod waitMethod) {
  543. this.waitMethod = waitMethod;
  544. return this;
  545. }
  546. /**
  547. * Whether to allow an agent to hear the state of the outbound call, including
  548. * ringing or disconnect messages. The default is `true`..
  549. *
  550. * @param earlyMedia Whether agents can hear the state of the outbound call
  551. * @return this
  552. */
  553. public ReservationUpdater setEarlyMedia(final Boolean earlyMedia) {
  554. this.earlyMedia = earlyMedia;
  555. return this;
  556. }
  557. /**
  558. * The maximum number of participants allowed in the conference. Can be a
  559. * positive integer from `2` to `250`. The default value is `250`..
  560. *
  561. * @param maxParticipants The maximum number of agent conference participants
  562. * @return this
  563. */
  564. public ReservationUpdater setMaxParticipants(final Integer maxParticipants) {
  565. this.maxParticipants = maxParticipants;
  566. return this;
  567. }
  568. /**
  569. * The URL we should call using the `conference_status_callback_method` when the
  570. * conference events in `conference_status_callback_event` occur. Only the value
  571. * set by the first participant to join the conference is used. Subsequent
  572. * `conference_status_callback` values are ignored..
  573. *
  574. * @param conferenceStatusCallback The callback URL for conference events
  575. * @return this
  576. */
  577. public ReservationUpdater setConferenceStatusCallback(final URI conferenceStatusCallback) {
  578. this.conferenceStatusCallback = conferenceStatusCallback;
  579. return this;
  580. }
  581. /**
  582. * The URL we should call using the `conference_status_callback_method` when the
  583. * conference events in `conference_status_callback_event` occur. Only the value
  584. * set by the first participant to join the conference is used. Subsequent
  585. * `conference_status_callback` values are ignored..
  586. *
  587. * @param conferenceStatusCallback The callback URL for conference events
  588. * @return this
  589. */
  590. public ReservationUpdater setConferenceStatusCallback(final String conferenceStatusCallback) {
  591. return setConferenceStatusCallback(Promoter.uriFromString(conferenceStatusCallback));
  592. }
  593. /**
  594. * The HTTP method we should use to call `conference_status_callback`. Can be:
  595. * `GET` or `POST` and defaults to `POST`..
  596. *
  597. * @param conferenceStatusCallbackMethod HTTP method for requesting
  598. * `conference_status_callback` URL
  599. * @return this
  600. */
  601. public ReservationUpdater setConferenceStatusCallbackMethod(final HttpMethod conferenceStatusCallbackMethod) {
  602. this.conferenceStatusCallbackMethod = conferenceStatusCallbackMethod;
  603. return this;
  604. }
  605. /**
  606. * The conference status events that we will send to
  607. * `conference_status_callback`. Can be: `start`, `end`, `join`, `leave`,
  608. * `mute`, `hold`, `speaker`..
  609. *
  610. * @param conferenceStatusCallbackEvent The conference status events that we
  611. * will send to conference_status_callback
  612. * @return this
  613. */
  614. public ReservationUpdater setConferenceStatusCallbackEvent(final List<Reservation.ConferenceEvent> conferenceStatusCallbackEvent) {
  615. this.conferenceStatusCallbackEvent = conferenceStatusCallbackEvent;
  616. return this;
  617. }
  618. /**
  619. * The conference status events that we will send to
  620. * `conference_status_callback`. Can be: `start`, `end`, `join`, `leave`,
  621. * `mute`, `hold`, `speaker`..
  622. *
  623. * @param conferenceStatusCallbackEvent The conference status events that we
  624. * will send to conference_status_callback
  625. * @return this
  626. */
  627. public ReservationUpdater setConferenceStatusCallbackEvent(final Reservation.ConferenceEvent conferenceStatusCallbackEvent) {
  628. return setConferenceStatusCallbackEvent(Promoter.listOfOne(conferenceStatusCallbackEvent));
  629. }
  630. /**
  631. * Whether to record the conference the participant is joining or when to record
  632. * the conference. Can be: `true`, `false`, `record-from-start`, and
  633. * `do-not-record`. The default value is `false`..
  634. *
  635. * @param conferenceRecord Whether to record the conference the participant is
  636. * joining
  637. * @return this
  638. */
  639. public ReservationUpdater setConferenceRecord(final String conferenceRecord) {
  640. this.conferenceRecord = conferenceRecord;
  641. return this;
  642. }
  643. /**
  644. * Whether to trim leading and trailing silence from your recorded conference
  645. * audio files. Can be: `trim-silence` or `do-not-trim` and defaults to
  646. * `trim-silence`..
  647. *
  648. * @param conferenceTrim Whether to trim leading and trailing silence from your
  649. * recorded conference audio files
  650. * @return this
  651. */
  652. public ReservationUpdater setConferenceTrim(final String conferenceTrim) {
  653. this.conferenceTrim = conferenceTrim;
  654. return this;
  655. }
  656. /**
  657. * The recording channels for the final recording. Can be: `mono` or `dual` and
  658. * the default is `mono`..
  659. *
  660. * @param recordingChannels Specify `mono` or `dual` recording channels
  661. * @return this
  662. */
  663. public ReservationUpdater setRecordingChannels(final String recordingChannels) {
  664. this.recordingChannels = recordingChannels;
  665. return this;
  666. }
  667. /**
  668. * The URL that we should call using the `recording_status_callback_method` when
  669. * the recording status changes..
  670. *
  671. * @param recordingStatusCallback The URL that we should call using the
  672. * `recording_status_callback_method` when the
  673. * recording status changes
  674. * @return this
  675. */
  676. public ReservationUpdater setRecordingStatusCallback(final URI recordingStatusCallback) {
  677. this.recordingStatusCallback = recordingStatusCallback;
  678. return this;
  679. }
  680. /**
  681. * The URL that we should call using the `recording_status_callback_method` when
  682. * the recording status changes..
  683. *
  684. * @param recordingStatusCallback The URL that we should call using the
  685. * `recording_status_callback_method` when the
  686. * recording status changes
  687. * @return this
  688. */
  689. public ReservationUpdater setRecordingStatusCallback(final String recordingStatusCallback) {
  690. return setRecordingStatusCallback(Promoter.uriFromString(recordingStatusCallback));
  691. }
  692. /**
  693. * The HTTP method we should use when we call `recording_status_callback`. Can
  694. * be: `GET` or `POST` and defaults to `POST`..
  695. *
  696. * @param recordingStatusCallbackMethod The HTTP method we should use when we
  697. * call `recording_status_callback`
  698. * @return this
  699. */
  700. public ReservationUpdater setRecordingStatusCallbackMethod(final HttpMethod recordingStatusCallbackMethod) {
  701. this.recordingStatusCallbackMethod = recordingStatusCallbackMethod;
  702. return this;
  703. }
  704. /**
  705. * The URL we should call using the
  706. * `conference_recording_status_callback_method` when the conference recording
  707. * is available..
  708. *
  709. * @param conferenceRecordingStatusCallback The URL we should call using the
  710. * `conference_recording_status_callback_method`
  711. * when the conference recording is
  712. * available
  713. * @return this
  714. */
  715. public ReservationUpdater setConferenceRecordingStatusCallback(final URI conferenceRecordingStatusCallback) {
  716. this.conferenceRecordingStatusCallback = conferenceRecordingStatusCallback;
  717. return this;
  718. }
  719. /**
  720. * The URL we should call using the
  721. * `conference_recording_status_callback_method` when the conference recording
  722. * is available..
  723. *
  724. * @param conferenceRecordingStatusCallback The URL we should call using the
  725. * `conference_recording_status_callback_method`
  726. * when the conference recording is
  727. * available
  728. * @return this
  729. */
  730. public ReservationUpdater setConferenceRecordingStatusCallback(final String conferenceRecordingStatusCallback) {
  731. return setConferenceRecordingStatusCallback(Promoter.uriFromString(conferenceRecordingStatusCallback));
  732. }
  733. /**
  734. * The HTTP method we should use to call `conference_recording_status_callback`.
  735. * Can be: `GET` or `POST` and defaults to `POST`..
  736. *
  737. * @param conferenceRecordingStatusCallbackMethod The HTTP method we should use
  738. * to call
  739. * `conference_recording_status_callback`
  740. * @return this
  741. */
  742. public ReservationUpdater setConferenceRecordingStatusCallbackMethod(final HttpMethod conferenceRecordingStatusCallbackMethod) {
  743. this.conferenceRecordingStatusCallbackMethod = conferenceRecordingStatusCallbackMethod;
  744. return this;
  745. }
  746. /**
  747. * The <a
  748. * href="https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls">region</a>
  749. * where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`,
  750. * `br1`, `au1`, or `jp1`..
  751. *
  752. * @param region The region where we should mix the conference audio
  753. * @return this
  754. */
  755. public ReservationUpdater setRegion(final String region) {
  756. this.region = region;
  757. return this;
  758. }
  759. /**
  760. * The SIP username used for authentication..
  761. *
  762. * @param sipAuthUsername The SIP username used for authentication
  763. * @return this
  764. */
  765. public ReservationUpdater setSipAuthUsername(final String sipAuthUsername) {
  766. this.sipAuthUsername = sipAuthUsername;
  767. return this;
  768. }
  769. /**
  770. * The SIP password for authentication..
  771. *
  772. * @param sipAuthPassword The SIP password for authentication
  773. * @return this
  774. */
  775. public ReservationUpdater setSipAuthPassword(final String sipAuthPassword) {
  776. this.sipAuthPassword = sipAuthPassword;
  777. return this;
  778. }
  779. /**
  780. * The call progress events sent via webhooks as a result of a Dequeue
  781. * instruction..
  782. *
  783. * @param dequeueStatusCallbackEvent The call progress events sent via webhooks
  784. * as a result of a Dequeue instruction
  785. * @return this
  786. */
  787. public ReservationUpdater setDequeueStatusCallbackEvent(final List<String> dequeueStatusCallbackEvent) {
  788. this.dequeueStatusCallbackEvent = dequeueStatusCallbackEvent;
  789. return this;
  790. }
  791. /**
  792. * The call progress events sent via webhooks as a result of a Dequeue
  793. * instruction..
  794. *
  795. * @param dequeueStatusCallbackEvent The call progress events sent via webhooks
  796. * as a result of a Dequeue instruction
  797. * @return this
  798. */
  799. public ReservationUpdater setDequeueStatusCallbackEvent(final String dequeueStatusCallbackEvent) {
  800. return setDequeueStatusCallbackEvent(Promoter.listOfOne(dequeueStatusCallbackEvent));
  801. }
  802. /**
  803. * The new worker activity SID after executing a Conference instruction..
  804. *
  805. * @param postWorkActivitySid The new worker activity SID after executing a
  806. * Conference instruction
  807. * @return this
  808. */
  809. public ReservationUpdater setPostWorkActivitySid(final String postWorkActivitySid) {
  810. this.postWorkActivitySid = postWorkActivitySid;
  811. return this;
  812. }
  813. /**
  814. * Whether to end the conference when the customer leaves..
  815. *
  816. * @param endConferenceOnCustomerExit Whether to end the conference when the
  817. * customer leaves
  818. * @return this
  819. */
  820. public ReservationUpdater setEndConferenceOnCustomerExit(final Boolean endConferenceOnCustomerExit) {
  821. this.endConferenceOnCustomerExit = endConferenceOnCustomerExit;
  822. return this;
  823. }
  824. /**
  825. * Whether to play a notification beep when the customer joins..
  826. *
  827. * @param beepOnCustomerEntrance Whether to play a notification beep when the
  828. * customer joins
  829. * @return this
  830. */
  831. public ReservationUpdater setBeepOnCustomerEntrance(final Boolean beepOnCustomerEntrance) {
  832. this.beepOnCustomerEntrance = beepOnCustomerEntrance;
  833. return this;
  834. }
  835. /**
  836. * The If-Match HTTP request header.
  837. *
  838. * @param ifMatch The If-Match HTTP request header
  839. * @return this
  840. */
  841. public ReservationUpdater setIfMatch(final String ifMatch) {
  842. this.ifMatch = ifMatch;
  843. return this;
  844. }
  845. /**
  846. * Make the request to the Twilio API to perform the update.
  847. *
  848. * @param client TwilioRestClient with which to make the request
  849. * @return Updated Reservation
  850. */
  851. @Override
  852. @SuppressWarnings("checkstyle:linelength")
  853. public Reservation update(final TwilioRestClient client) {
  854. Request request = new Request(
  855. HttpMethod.POST,
  856. Domains.TASKROUTER.toString(),
  857. "/v1/Workspaces/" + this.pathWorkspaceSid + "/Workers/" + this.pathWorkerSid + "/Reservations/" + this.pathSid + ""
  858. );
  859. addPostParams(request);
  860. addHeaderParams(request);
  861. Response response = client.request(request);
  862. if (response == null) {
  863. throw new ApiConnectionException("Reservation update failed: Unable to connect to server");
  864. } else if (!TwilioRestClient.SUCCESS.test(response.getStatusCode())) {
  865. RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
  866. if (restException == null) {
  867. throw new ApiException("Server Error, no content");
  868. }
  869. throw new ApiException(restException);
  870. }
  871. return Reservation.fromJson(response.getStream(), client.getObjectMapper());
  872. }
  873. /**
  874. * Add the requested header parameters to the Request.
  875. *
  876. * @param request Request to add header params to
  877. */
  878. private void addHeaderParams(final Request request) {
  879. if (ifMatch != null) {
  880. request.addHeaderParam("If-Match", ifMatch);
  881. }
  882. }
  883. /**
  884. * Add the requested post parameters to the Request.
  885. *
  886. * @param request Request to add post params to
  887. */
  888. private void addPostParams(final Request request) {
  889. if (reservationStatus != null) {
  890. request.addPostParam("ReservationStatus", reservationStatus.toString());
  891. }
  892. if (workerActivitySid != null) {
  893. request.addPostParam("WorkerActivitySid", workerActivitySid);
  894. }
  895. if (instruction != null) {
  896. request.addPostParam("Instruction", instruction);
  897. }
  898. if (dequeuePostWorkActivitySid != null) {
  899. request.addPostParam("DequeuePostWorkActivitySid", dequeuePostWorkActivitySid);
  900. }
  901. if (dequeueFrom != null) {
  902. request.addPostParam("DequeueFrom", dequeueFrom);
  903. }
  904. if (dequeueRecord != null) {
  905. request.addPostParam("DequeueRecord", dequeueRecord);
  906. }
  907. if (dequeueTimeout != null) {
  908. request.addPostParam("DequeueTimeout", dequeueTimeout.toString());
  909. }
  910. if (dequeueTo != null) {
  911. request.addPostParam("DequeueTo", dequeueTo);
  912. }
  913. if (dequeueStatusCallbackUrl != null) {
  914. request.addPostParam("DequeueStatusCallbackUrl", dequeueStatusCallbackUrl.toString());
  915. }
  916. if (callFrom != null) {
  917. request.addPostParam("CallFrom", callFrom);
  918. }
  919. if (callRecord != null) {
  920. request.addPostParam("CallRecord", callRecord);
  921. }
  922. if (callTimeout != null) {
  923. request.addPostParam("CallTimeout", callTimeout.toString());
  924. }
  925. if (callTo != null) {
  926. request.addPostParam("CallTo", callTo);
  927. }
  928. if (callUrl != null) {
  929. request.addPostParam("CallUrl", callUrl.toString());
  930. }
  931. if (callStatusCallbackUrl != null) {
  932. request.addPostParam("CallStatusCallbackUrl", callStatusCallbackUrl.toString());
  933. }
  934. if (callAccept != null) {
  935. request.addPostParam("CallAccept", callAccept.toString());
  936. }
  937. if (redirectCallSid != null) {
  938. request.addPostParam("RedirectCallSid", redirectCallSid);
  939. }
  940. if (redirectAccept != null) {
  941. request.addPostParam("RedirectAccept", redirectAccept.toString());
  942. }
  943. if (redirectUrl != null) {
  944. request.addPostParam("RedirectUrl", redirectUrl.toString());
  945. }
  946. if (to != null) {
  947. request.addPostParam("To", to);
  948. }
  949. if (from != null) {
  950. request.addPostParam("From", from);
  951. }
  952. if (statusCallback != null) {
  953. request.addPostParam("StatusCallback", statusCallback.toString());
  954. }
  955. if (statusCallbackMethod != null) {
  956. request.addPostParam("StatusCallbackMethod", statusCallbackMethod.toString());
  957. }
  958. if (statusCallbackEvent != null) {
  959. for (Reservation.CallStatus prop : statusCallbackEvent) {
  960. request.addPostParam("StatusCallbackEvent", prop.toString());
  961. }
  962. }
  963. if (timeout != null) {
  964. request.addPostParam("Timeout", timeout.toString());
  965. }
  966. if (record != null) {
  967. request.addPostParam("Record", record.toString());
  968. }
  969. if (muted != null) {
  970. request.addPostParam("Muted", muted.toString());
  971. }
  972. if (beep != null) {
  973. request.addPostParam("Beep", beep);
  974. }
  975. if (startConferenceOnEnter != null) {
  976. request.addPostParam("StartConferenceOnEnter", startConferenceOnEnter.toString());
  977. }
  978. if (endConferenceOnExit != null) {
  979. request.addPostParam("EndConferenceOnExit", endConferenceOnExit.toString());
  980. }
  981. if (waitUrl != null) {
  982. request.addPostParam("WaitUrl", waitUrl.toString());
  983. }
  984. if (waitMethod != null) {
  985. request.addPostParam("WaitMethod", waitMethod.toString());
  986. }
  987. if (earlyMedia != null) {
  988. request.addPostParam("EarlyMedia", earlyMedia.toString());
  989. }
  990. if (maxParticipants != null) {
  991. request.addPostParam("MaxParticipants", maxParticipants.toString());
  992. }
  993. if (conferenceStatusCallback != null) {
  994. request.addPostParam("ConferenceStatusCallback", conferenceStatusCallback.toString());
  995. }
  996. if (conferenceStatusCallbackMethod != null) {
  997. request.addPostParam("ConferenceStatusCallbackMethod", conferenceStatusCallbackMethod.toString());
  998. }
  999. if (conferenceStatusCallbackEvent != null) {
  1000. for (Reservation.ConferenceEvent prop : conferenceStatusCallbackEvent) {
  1001. request.addPostParam("ConferenceStatusCallbackEvent", prop.toString());
  1002. }
  1003. }
  1004. if (conferenceRecord != null) {
  1005. request.addPostParam("ConferenceRecord", conferenceRecord);
  1006. }
  1007. if (conferenceTrim != null) {
  1008. request.addPostParam("ConferenceTrim", conferenceTrim);
  1009. }
  1010. if (recordingChannels != null) {
  1011. request.addPostParam("RecordingChannels", recordingChannels);
  1012. }
  1013. if (recordingStatusCallback != null) {
  1014. request.addPostParam("RecordingStatusCallback", recordingStatusCallback.toString());
  1015. }
  1016. if (recordingStatusCallbackMethod != null) {
  1017. request.addPostParam("RecordingStatusCallbackMethod", recordingStatusCallbackMethod.toString());
  1018. }
  1019. if (conferenceRecordingStatusCallback != null) {
  1020. request.addPostParam("ConferenceRecordingStatusCallback", conferenceRecordingStatusCallback.toString());
  1021. }
  1022. if (conferenceRecordingStatusCallbackMethod != null) {
  1023. request.addPostParam("ConferenceRecordingStatusCallbackMethod", conferenceRecordingStatusCallbackMethod.toString());
  1024. }
  1025. if (region != null) {
  1026. request.addPostParam("Region", region);
  1027. }
  1028. if (sipAuthUsername != null) {
  1029. request.addPostParam("SipAuthUsername", sipAuthUsername);
  1030. }
  1031. if (sipAuthPassword != null) {
  1032. request.addPostParam("SipAuthPassword", sipAuthPassword);
  1033. }
  1034. if (dequeueStatusCallbackEvent != null) {
  1035. for (String prop : dequeueStatusCallbackEvent) {
  1036. request.addPostParam("DequeueStatusCallbackEvent", prop);
  1037. }
  1038. }
  1039. if (postWorkActivitySid != null) {
  1040. request.addPostParam("PostWorkActivitySid", postWorkActivitySid);
  1041. }
  1042. if (endConferenceOnCustomerExit != null) {
  1043. request.addPostParam("EndConferenceOnCustomerExit", endConferenceOnCustomerExit.toString());
  1044. }
  1045. if (beepOnCustomerEntrance != null) {
  1046. request.addPostParam("BeepOnCustomerEntrance", beepOnCustomerEntrance.toString());
  1047. }
  1048. }
  1049. }