/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantOptions.php

http://github.com/twilio/twilio-php · PHP · 935 lines · 299 code · 64 blank · 572 comment · 0 complexity · 4028035d38cdb955dee4e0dc4eefea6c 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\Conference;
  9. use Twilio\Options;
  10. use Twilio\Values;
  11. abstract class ParticipantOptions {
  12. /**
  13. * @param bool $muted Whether the participant should be muted
  14. * @param bool $hold Whether the participant should be on hold
  15. * @param string $holdUrl The URL we call using the `hold_method` for music
  16. * that plays when the participant is on hold
  17. * @param string $holdMethod The HTTP method we should use to call hold_url
  18. * @param string $announceUrl The URL we call using the `announce_method` for
  19. * an announcement to the participant
  20. * @param string $announceMethod The HTTP method we should use to call
  21. * announce_url
  22. * @param string $waitUrl URL that hosts pre-conference hold music
  23. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  24. * @param bool $beepOnExit Whether to play a notification beep to the
  25. * conference when the participant exit
  26. * @param bool $endConferenceOnExit Whether to end the conference when the
  27. * participant leaves
  28. * @param bool $coaching Indicates if the participant changed to coach
  29. * @param string $callSidToCoach The SID of the participant who is being
  30. * `coached`
  31. * @return UpdateParticipantOptions Options builder
  32. */
  33. public static function update(bool $muted = Values::NONE, bool $hold = Values::NONE, string $holdUrl = Values::NONE, string $holdMethod = Values::NONE, string $announceUrl = Values::NONE, string $announceMethod = Values::NONE, string $waitUrl = Values::NONE, string $waitMethod = Values::NONE, bool $beepOnExit = Values::NONE, bool $endConferenceOnExit = Values::NONE, bool $coaching = Values::NONE, string $callSidToCoach = Values::NONE): UpdateParticipantOptions {
  34. return new UpdateParticipantOptions($muted, $hold, $holdUrl, $holdMethod, $announceUrl, $announceMethod, $waitUrl, $waitMethod, $beepOnExit, $endConferenceOnExit, $coaching, $callSidToCoach);
  35. }
  36. /**
  37. * @param string $statusCallback The URL we should call to send status
  38. * information to your application
  39. * @param string $statusCallbackMethod The HTTP method we should use to call
  40. * `status_callback`
  41. * @param string[] $statusCallbackEvent Set state change events that will
  42. * trigger a callback
  43. * @param string $label The label of this participant
  44. * @param int $timeout he number of seconds that we should wait for an answer
  45. * @param bool $record Whether to record the participant and their conferences
  46. * @param bool $muted Whether to mute the agent
  47. * @param string $beep Whether to play a notification beep to the conference
  48. * when the participant joins
  49. * @param bool $startConferenceOnEnter Whether the conference starts when the
  50. * participant joins the conference
  51. * @param bool $endConferenceOnExit Whether to end the conference when the
  52. * participant leaves
  53. * @param string $waitUrl URL that hosts pre-conference hold music
  54. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  55. * @param bool $earlyMedia Whether agents can hear the state of the outbound
  56. * call
  57. * @param int $maxParticipants The maximum number of agent conference
  58. * participants
  59. * @param string $conferenceRecord Whether to record the conference the
  60. * participant is joining
  61. * @param string $conferenceTrim Whether to trim leading and trailing silence
  62. * from your recorded conference audio files
  63. * @param string $conferenceStatusCallback The callback URL for conference
  64. * events
  65. * @param string $conferenceStatusCallbackMethod HTTP method for requesting
  66. * `conference_status_callback`
  67. * URL
  68. * @param string[] $conferenceStatusCallbackEvent The conference state changes
  69. * that should generate a call
  70. * to
  71. * `conference_status_callback`
  72. * @param string $recordingChannels Specify `mono` or `dual` recording channels
  73. * @param string $recordingStatusCallback The URL that we should call using the
  74. * `recording_status_callback_method`
  75. * when the recording status changes
  76. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  77. * when we call
  78. * `recording_status_callback`
  79. * @param string $sipAuthUsername The SIP username used for authentication
  80. * @param string $sipAuthPassword The SIP password for authentication
  81. * @param string $region The region where we should mix the conference audio
  82. * @param string $conferenceRecordingStatusCallback The URL we should call
  83. * using the
  84. * `conference_recording_status_callback_method` when the conference recording is available
  85. * @param string $conferenceRecordingStatusCallbackMethod The HTTP method we
  86. * should use to call
  87. * `conference_recording_status_callback`
  88. * @param string[] $recordingStatusCallbackEvent The recording state changes
  89. * that should generate a call to
  90. * `recording_status_callback`
  91. * @param string[] $conferenceRecordingStatusCallbackEvent The conference
  92. * recording state
  93. * changes that should
  94. * generate a call to
  95. * `conference_recording_status_callback`
  96. * @param bool $coaching Indicates if the participant changed to coach
  97. * @param string $callSidToCoach The SID of the participant who is being
  98. * `coached`
  99. * @param string $jitterBufferSize Jitter Buffer size for the connecting
  100. * participant
  101. * @param string $byoc BYOC trunk SID (Beta)
  102. * @param string $callerId The phone number, Client identifier, or username
  103. * portion of SIP address that made this call.
  104. * @param string $callReason Reason for the call (Branded Calls Beta)
  105. * @param string $recordingTrack The track(s) to record
  106. * @param int $timeLimit The maximum duration of the call in seconds.
  107. * @return CreateParticipantOptions Options builder
  108. */
  109. public static function create(string $statusCallback = Values::NONE, string $statusCallbackMethod = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, string $label = Values::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 $conferenceRecord = Values::NONE, string $conferenceTrim = Values::NONE, string $conferenceStatusCallback = Values::NONE, string $conferenceStatusCallbackMethod = Values::NONE, array $conferenceStatusCallbackEvent = Values::ARRAY_NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, string $recordingStatusCallbackMethod = Values::NONE, string $sipAuthUsername = Values::NONE, string $sipAuthPassword = Values::NONE, string $region = Values::NONE, string $conferenceRecordingStatusCallback = Values::NONE, string $conferenceRecordingStatusCallbackMethod = Values::NONE, array $recordingStatusCallbackEvent = Values::ARRAY_NONE, array $conferenceRecordingStatusCallbackEvent = Values::ARRAY_NONE, bool $coaching = Values::NONE, string $callSidToCoach = Values::NONE, string $jitterBufferSize = Values::NONE, string $byoc = Values::NONE, string $callerId = Values::NONE, string $callReason = Values::NONE, string $recordingTrack = Values::NONE, int $timeLimit = Values::NONE): CreateParticipantOptions {
  110. return new CreateParticipantOptions($statusCallback, $statusCallbackMethod, $statusCallbackEvent, $label, $timeout, $record, $muted, $beep, $startConferenceOnEnter, $endConferenceOnExit, $waitUrl, $waitMethod, $earlyMedia, $maxParticipants, $conferenceRecord, $conferenceTrim, $conferenceStatusCallback, $conferenceStatusCallbackMethod, $conferenceStatusCallbackEvent, $recordingChannels, $recordingStatusCallback, $recordingStatusCallbackMethod, $sipAuthUsername, $sipAuthPassword, $region, $conferenceRecordingStatusCallback, $conferenceRecordingStatusCallbackMethod, $recordingStatusCallbackEvent, $conferenceRecordingStatusCallbackEvent, $coaching, $callSidToCoach, $jitterBufferSize, $byoc, $callerId, $callReason, $recordingTrack, $timeLimit);
  111. }
  112. /**
  113. * @param bool $muted Whether to return only participants that are muted
  114. * @param bool $hold Whether to return only participants that are on hold
  115. * @param bool $coaching Whether to return only participants who are coaching
  116. * another call
  117. * @return ReadParticipantOptions Options builder
  118. */
  119. public static function read(bool $muted = Values::NONE, bool $hold = Values::NONE, bool $coaching = Values::NONE): ReadParticipantOptions {
  120. return new ReadParticipantOptions($muted, $hold, $coaching);
  121. }
  122. }
  123. class UpdateParticipantOptions extends Options {
  124. /**
  125. * @param bool $muted Whether the participant should be muted
  126. * @param bool $hold Whether the participant should be on hold
  127. * @param string $holdUrl The URL we call using the `hold_method` for music
  128. * that plays when the participant is on hold
  129. * @param string $holdMethod The HTTP method we should use to call hold_url
  130. * @param string $announceUrl The URL we call using the `announce_method` for
  131. * an announcement to the participant
  132. * @param string $announceMethod The HTTP method we should use to call
  133. * announce_url
  134. * @param string $waitUrl URL that hosts pre-conference hold music
  135. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  136. * @param bool $beepOnExit Whether to play a notification beep to the
  137. * conference when the participant exit
  138. * @param bool $endConferenceOnExit Whether to end the conference when the
  139. * participant leaves
  140. * @param bool $coaching Indicates if the participant changed to coach
  141. * @param string $callSidToCoach The SID of the participant who is being
  142. * `coached`
  143. */
  144. public function __construct(bool $muted = Values::NONE, bool $hold = Values::NONE, string $holdUrl = Values::NONE, string $holdMethod = Values::NONE, string $announceUrl = Values::NONE, string $announceMethod = Values::NONE, string $waitUrl = Values::NONE, string $waitMethod = Values::NONE, bool $beepOnExit = Values::NONE, bool $endConferenceOnExit = Values::NONE, bool $coaching = Values::NONE, string $callSidToCoach = Values::NONE) {
  145. $this->options['muted'] = $muted;
  146. $this->options['hold'] = $hold;
  147. $this->options['holdUrl'] = $holdUrl;
  148. $this->options['holdMethod'] = $holdMethod;
  149. $this->options['announceUrl'] = $announceUrl;
  150. $this->options['announceMethod'] = $announceMethod;
  151. $this->options['waitUrl'] = $waitUrl;
  152. $this->options['waitMethod'] = $waitMethod;
  153. $this->options['beepOnExit'] = $beepOnExit;
  154. $this->options['endConferenceOnExit'] = $endConferenceOnExit;
  155. $this->options['coaching'] = $coaching;
  156. $this->options['callSidToCoach'] = $callSidToCoach;
  157. }
  158. /**
  159. * Whether the participant should be muted. Can be `true` or `false`. `true` will mute the participant, and `false` will un-mute them. Anything value other than `true` or `false` is interpreted as `false`.
  160. *
  161. * @param bool $muted Whether the participant should be muted
  162. * @return $this Fluent Builder
  163. */
  164. public function setMuted(bool $muted): self {
  165. $this->options['muted'] = $muted;
  166. return $this;
  167. }
  168. /**
  169. * Whether the participant should be on hold. Can be: `true` or `false`. `true` puts the participant on hold, and `false` lets them rejoin the conference.
  170. *
  171. * @param bool $hold Whether the participant should be on hold
  172. * @return $this Fluent Builder
  173. */
  174. public function setHold(bool $hold): self {
  175. $this->options['hold'] = $hold;
  176. return $this;
  177. }
  178. /**
  179. * The URL we call using the `hold_method` for music that plays when the participant is on hold. The URL may return an MP3 file, a WAV file, or a TwiML document that contains the `<Play>`, `<Say>` or `<Redirect>` commands.
  180. *
  181. * @param string $holdUrl The URL we call using the `hold_method` for music
  182. * that plays when the participant is on hold
  183. * @return $this Fluent Builder
  184. */
  185. public function setHoldUrl(string $holdUrl): self {
  186. $this->options['holdUrl'] = $holdUrl;
  187. return $this;
  188. }
  189. /**
  190. * The HTTP method we should use to call `hold_url`. Can be: `GET` or `POST` and the default is `GET`.
  191. *
  192. * @param string $holdMethod The HTTP method we should use to call hold_url
  193. * @return $this Fluent Builder
  194. */
  195. public function setHoldMethod(string $holdMethod): self {
  196. $this->options['holdMethod'] = $holdMethod;
  197. return $this;
  198. }
  199. /**
  200. * The URL we call using the `announce_method` for an announcement to the participant. The URL must return an MP3 file, a WAV file, or a TwiML document that contains `<Play>` or `<Say>` commands.
  201. *
  202. * @param string $announceUrl The URL we call using the `announce_method` for
  203. * an announcement to the participant
  204. * @return $this Fluent Builder
  205. */
  206. public function setAnnounceUrl(string $announceUrl): self {
  207. $this->options['announceUrl'] = $announceUrl;
  208. return $this;
  209. }
  210. /**
  211. * The HTTP method we should use to call `announce_url`. Can be: `GET` or `POST` and defaults to `POST`.
  212. *
  213. * @param string $announceMethod The HTTP method we should use to call
  214. * announce_url
  215. * @return $this Fluent Builder
  216. */
  217. public function setAnnounceMethod(string $announceMethod): self {
  218. $this->options['announceMethod'] = $announceMethod;
  219. return $this;
  220. }
  221. /**
  222. * 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).
  223. *
  224. * @param string $waitUrl URL that hosts pre-conference hold music
  225. * @return $this Fluent Builder
  226. */
  227. public function setWaitUrl(string $waitUrl): self {
  228. $this->options['waitUrl'] = $waitUrl;
  229. return $this;
  230. }
  231. /**
  232. * 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.
  233. *
  234. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  235. * @return $this Fluent Builder
  236. */
  237. public function setWaitMethod(string $waitMethod): self {
  238. $this->options['waitMethod'] = $waitMethod;
  239. return $this;
  240. }
  241. /**
  242. * Whether to play a notification beep to the conference when the participant exits. Can be: `true` or `false`.
  243. *
  244. * @param bool $beepOnExit Whether to play a notification beep to the
  245. * conference when the participant exit
  246. * @return $this Fluent Builder
  247. */
  248. public function setBeepOnExit(bool $beepOnExit): self {
  249. $this->options['beepOnExit'] = $beepOnExit;
  250. return $this;
  251. }
  252. /**
  253. * Whether to end the conference when the participant leaves. Can be: `true` or `false` and defaults to `false`.
  254. *
  255. * @param bool $endConferenceOnExit Whether to end the conference when the
  256. * participant leaves
  257. * @return $this Fluent Builder
  258. */
  259. public function setEndConferenceOnExit(bool $endConferenceOnExit): self {
  260. $this->options['endConferenceOnExit'] = $endConferenceOnExit;
  261. return $this;
  262. }
  263. /**
  264. * Whether the participant is coaching another call. Can be: `true` or `false`. If not present, defaults to `false` unless `call_sid_to_coach` is defined. If `true`, `call_sid_to_coach` must be defined.
  265. *
  266. * @param bool $coaching Indicates if the participant changed to coach
  267. * @return $this Fluent Builder
  268. */
  269. public function setCoaching(bool $coaching): self {
  270. $this->options['coaching'] = $coaching;
  271. return $this;
  272. }
  273. /**
  274. * The SID of the participant who is being `coached`. The participant being coached is the only participant who can hear the participant who is `coaching`.
  275. *
  276. * @param string $callSidToCoach The SID of the participant who is being
  277. * `coached`
  278. * @return $this Fluent Builder
  279. */
  280. public function setCallSidToCoach(string $callSidToCoach): self {
  281. $this->options['callSidToCoach'] = $callSidToCoach;
  282. return $this;
  283. }
  284. /**
  285. * Provide a friendly representation
  286. *
  287. * @return string Machine friendly representation
  288. */
  289. public function __toString(): string {
  290. $options = \http_build_query(Values::of($this->options), '', ' ');
  291. return '[Twilio.Api.V2010.UpdateParticipantOptions ' . $options . ']';
  292. }
  293. }
  294. class CreateParticipantOptions extends Options {
  295. /**
  296. * @param string $statusCallback The URL we should call to send status
  297. * information to your application
  298. * @param string $statusCallbackMethod The HTTP method we should use to call
  299. * `status_callback`
  300. * @param string[] $statusCallbackEvent Set state change events that will
  301. * trigger a callback
  302. * @param string $label The label of this participant
  303. * @param int $timeout he number of seconds that we should wait for an answer
  304. * @param bool $record Whether to record the participant and their conferences
  305. * @param bool $muted Whether to mute the agent
  306. * @param string $beep Whether to play a notification beep to the conference
  307. * when the participant joins
  308. * @param bool $startConferenceOnEnter Whether the conference starts when the
  309. * participant joins the conference
  310. * @param bool $endConferenceOnExit Whether to end the conference when the
  311. * participant leaves
  312. * @param string $waitUrl URL that hosts pre-conference hold music
  313. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  314. * @param bool $earlyMedia Whether agents can hear the state of the outbound
  315. * call
  316. * @param int $maxParticipants The maximum number of agent conference
  317. * participants
  318. * @param string $conferenceRecord Whether to record the conference the
  319. * participant is joining
  320. * @param string $conferenceTrim Whether to trim leading and trailing silence
  321. * from your recorded conference audio files
  322. * @param string $conferenceStatusCallback The callback URL for conference
  323. * events
  324. * @param string $conferenceStatusCallbackMethod HTTP method for requesting
  325. * `conference_status_callback`
  326. * URL
  327. * @param string[] $conferenceStatusCallbackEvent The conference state changes
  328. * that should generate a call
  329. * to
  330. * `conference_status_callback`
  331. * @param string $recordingChannels Specify `mono` or `dual` recording channels
  332. * @param string $recordingStatusCallback The URL that we should call using the
  333. * `recording_status_callback_method`
  334. * when the recording status changes
  335. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  336. * when we call
  337. * `recording_status_callback`
  338. * @param string $sipAuthUsername The SIP username used for authentication
  339. * @param string $sipAuthPassword The SIP password for authentication
  340. * @param string $region The region where we should mix the conference audio
  341. * @param string $conferenceRecordingStatusCallback The URL we should call
  342. * using the
  343. * `conference_recording_status_callback_method` when the conference recording is available
  344. * @param string $conferenceRecordingStatusCallbackMethod The HTTP method we
  345. * should use to call
  346. * `conference_recording_status_callback`
  347. * @param string[] $recordingStatusCallbackEvent The recording state changes
  348. * that should generate a call to
  349. * `recording_status_callback`
  350. * @param string[] $conferenceRecordingStatusCallbackEvent The conference
  351. * recording state
  352. * changes that should
  353. * generate a call to
  354. * `conference_recording_status_callback`
  355. * @param bool $coaching Indicates if the participant changed to coach
  356. * @param string $callSidToCoach The SID of the participant who is being
  357. * `coached`
  358. * @param string $jitterBufferSize Jitter Buffer size for the connecting
  359. * participant
  360. * @param string $byoc BYOC trunk SID (Beta)
  361. * @param string $callerId The phone number, Client identifier, or username
  362. * portion of SIP address that made this call.
  363. * @param string $callReason Reason for the call (Branded Calls Beta)
  364. * @param string $recordingTrack The track(s) to record
  365. * @param int $timeLimit The maximum duration of the call in seconds.
  366. */
  367. public function __construct(string $statusCallback = Values::NONE, string $statusCallbackMethod = Values::NONE, array $statusCallbackEvent = Values::ARRAY_NONE, string $label = Values::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 $conferenceRecord = Values::NONE, string $conferenceTrim = Values::NONE, string $conferenceStatusCallback = Values::NONE, string $conferenceStatusCallbackMethod = Values::NONE, array $conferenceStatusCallbackEvent = Values::ARRAY_NONE, string $recordingChannels = Values::NONE, string $recordingStatusCallback = Values::NONE, string $recordingStatusCallbackMethod = Values::NONE, string $sipAuthUsername = Values::NONE, string $sipAuthPassword = Values::NONE, string $region = Values::NONE, string $conferenceRecordingStatusCallback = Values::NONE, string $conferenceRecordingStatusCallbackMethod = Values::NONE, array $recordingStatusCallbackEvent = Values::ARRAY_NONE, array $conferenceRecordingStatusCallbackEvent = Values::ARRAY_NONE, bool $coaching = Values::NONE, string $callSidToCoach = Values::NONE, string $jitterBufferSize = Values::NONE, string $byoc = Values::NONE, string $callerId = Values::NONE, string $callReason = Values::NONE, string $recordingTrack = Values::NONE, int $timeLimit = Values::NONE) {
  368. $this->options['statusCallback'] = $statusCallback;
  369. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  370. $this->options['statusCallbackEvent'] = $statusCallbackEvent;
  371. $this->options['label'] = $label;
  372. $this->options['timeout'] = $timeout;
  373. $this->options['record'] = $record;
  374. $this->options['muted'] = $muted;
  375. $this->options['beep'] = $beep;
  376. $this->options['startConferenceOnEnter'] = $startConferenceOnEnter;
  377. $this->options['endConferenceOnExit'] = $endConferenceOnExit;
  378. $this->options['waitUrl'] = $waitUrl;
  379. $this->options['waitMethod'] = $waitMethod;
  380. $this->options['earlyMedia'] = $earlyMedia;
  381. $this->options['maxParticipants'] = $maxParticipants;
  382. $this->options['conferenceRecord'] = $conferenceRecord;
  383. $this->options['conferenceTrim'] = $conferenceTrim;
  384. $this->options['conferenceStatusCallback'] = $conferenceStatusCallback;
  385. $this->options['conferenceStatusCallbackMethod'] = $conferenceStatusCallbackMethod;
  386. $this->options['conferenceStatusCallbackEvent'] = $conferenceStatusCallbackEvent;
  387. $this->options['recordingChannels'] = $recordingChannels;
  388. $this->options['recordingStatusCallback'] = $recordingStatusCallback;
  389. $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;
  390. $this->options['sipAuthUsername'] = $sipAuthUsername;
  391. $this->options['sipAuthPassword'] = $sipAuthPassword;
  392. $this->options['region'] = $region;
  393. $this->options['conferenceRecordingStatusCallback'] = $conferenceRecordingStatusCallback;
  394. $this->options['conferenceRecordingStatusCallbackMethod'] = $conferenceRecordingStatusCallbackMethod;
  395. $this->options['recordingStatusCallbackEvent'] = $recordingStatusCallbackEvent;
  396. $this->options['conferenceRecordingStatusCallbackEvent'] = $conferenceRecordingStatusCallbackEvent;
  397. $this->options['coaching'] = $coaching;
  398. $this->options['callSidToCoach'] = $callSidToCoach;
  399. $this->options['jitterBufferSize'] = $jitterBufferSize;
  400. $this->options['byoc'] = $byoc;
  401. $this->options['callerId'] = $callerId;
  402. $this->options['callReason'] = $callReason;
  403. $this->options['recordingTrack'] = $recordingTrack;
  404. $this->options['timeLimit'] = $timeLimit;
  405. }
  406. /**
  407. * The URL we should call using the `status_callback_method` to send status information to your application.
  408. *
  409. * @param string $statusCallback The URL we should call to send status
  410. * information to your application
  411. * @return $this Fluent Builder
  412. */
  413. public function setStatusCallback(string $statusCallback): self {
  414. $this->options['statusCallback'] = $statusCallback;
  415. return $this;
  416. }
  417. /**
  418. * The HTTP method we should use to call `status_callback`. Can be: `GET` and `POST` and defaults to `POST`.
  419. *
  420. * @param string $statusCallbackMethod The HTTP method we should use to call
  421. * `status_callback`
  422. * @return $this Fluent Builder
  423. */
  424. public function setStatusCallbackMethod(string $statusCallbackMethod): self {
  425. $this->options['statusCallbackMethod'] = $statusCallbackMethod;
  426. return $this;
  427. }
  428. /**
  429. * The conference state changes that should generate a call to `status_callback`. Can be: `initiated`, `ringing`, `answered`, and `completed`. Separate multiple values with a space. The default value is `completed`.
  430. *
  431. * @param string[] $statusCallbackEvent Set state change events that will
  432. * trigger a callback
  433. * @return $this Fluent Builder
  434. */
  435. public function setStatusCallbackEvent(array $statusCallbackEvent): self {
  436. $this->options['statusCallbackEvent'] = $statusCallbackEvent;
  437. return $this;
  438. }
  439. /**
  440. * A label for this participant. If one is supplied, it may subsequently be used to fetch, update or delete the participant.
  441. *
  442. * @param string $label The label of this participant
  443. * @return $this Fluent Builder
  444. */
  445. public function setLabel(string $label): self {
  446. $this->options['label'] = $label;
  447. return $this;
  448. }
  449. /**
  450. * The number of seconds that we should allow the phone to ring before assuming there is no answer. Can be an integer between `5` and `600`, inclusive. The default value is `60`. We always add a 5-second timeout buffer to outgoing calls, so value of 10 would result in an actual timeout that was closer to 15 seconds.
  451. *
  452. * @param int $timeout he number of seconds that we should wait for an answer
  453. * @return $this Fluent Builder
  454. */
  455. public function setTimeout(int $timeout): self {
  456. $this->options['timeout'] = $timeout;
  457. return $this;
  458. }
  459. /**
  460. * Whether to record the participant and their conferences, including the time between conferences. Can be `true` or `false` and the default is `false`.
  461. *
  462. * @param bool $record Whether to record the participant and their conferences
  463. * @return $this Fluent Builder
  464. */
  465. public function setRecord(bool $record): self {
  466. $this->options['record'] = $record;
  467. return $this;
  468. }
  469. /**
  470. * Whether the agent is muted in the conference. Can be `true` or `false` and the default is `false`.
  471. *
  472. * @param bool $muted Whether to mute the agent
  473. * @return $this Fluent Builder
  474. */
  475. public function setMuted(bool $muted): self {
  476. $this->options['muted'] = $muted;
  477. return $this;
  478. }
  479. /**
  480. * Whether to play a notification beep to the conference when the participant joins. Can be: `true`, `false`, `onEnter`, or `onExit`. The default value is `true`.
  481. *
  482. * @param string $beep Whether to play a notification beep to the conference
  483. * when the participant joins
  484. * @return $this Fluent Builder
  485. */
  486. public function setBeep(string $beep): self {
  487. $this->options['beep'] = $beep;
  488. return $this;
  489. }
  490. /**
  491. * 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.
  492. *
  493. * @param bool $startConferenceOnEnter Whether the conference starts when the
  494. * participant joins the conference
  495. * @return $this Fluent Builder
  496. */
  497. public function setStartConferenceOnEnter(bool $startConferenceOnEnter): self {
  498. $this->options['startConferenceOnEnter'] = $startConferenceOnEnter;
  499. return $this;
  500. }
  501. /**
  502. * Whether to end the conference when the participant leaves. Can be: `true` or `false` and defaults to `false`.
  503. *
  504. * @param bool $endConferenceOnExit Whether to end the conference when the
  505. * participant leaves
  506. * @return $this Fluent Builder
  507. */
  508. public function setEndConferenceOnExit(bool $endConferenceOnExit): self {
  509. $this->options['endConferenceOnExit'] = $endConferenceOnExit;
  510. return $this;
  511. }
  512. /**
  513. * 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).
  514. *
  515. * @param string $waitUrl URL that hosts pre-conference hold music
  516. * @return $this Fluent Builder
  517. */
  518. public function setWaitUrl(string $waitUrl): self {
  519. $this->options['waitUrl'] = $waitUrl;
  520. return $this;
  521. }
  522. /**
  523. * 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.
  524. *
  525. * @param string $waitMethod The HTTP method we should use to call `wait_url`
  526. * @return $this Fluent Builder
  527. */
  528. public function setWaitMethod(string $waitMethod): self {
  529. $this->options['waitMethod'] = $waitMethod;
  530. return $this;
  531. }
  532. /**
  533. * Whether to allow an agent to hear the state of the outbound call, including ringing or disconnect messages. Can be: `true` or `false` and defaults to `true`.
  534. *
  535. * @param bool $earlyMedia Whether agents can hear the state of the outbound
  536. * call
  537. * @return $this Fluent Builder
  538. */
  539. public function setEarlyMedia(bool $earlyMedia): self {
  540. $this->options['earlyMedia'] = $earlyMedia;
  541. return $this;
  542. }
  543. /**
  544. * The maximum number of participants in the conference. Can be a positive integer from `2` to `250`. The default value is `250`.
  545. *
  546. * @param int $maxParticipants The maximum number of agent conference
  547. * participants
  548. * @return $this Fluent Builder
  549. */
  550. public function setMaxParticipants(int $maxParticipants): self {
  551. $this->options['maxParticipants'] = $maxParticipants;
  552. return $this;
  553. }
  554. /**
  555. * Whether to record the conference the participant is joining. Can be: `true`, `false`, `record-from-start`, and `do-not-record`. The default value is `false`.
  556. *
  557. * @param string $conferenceRecord Whether to record the conference the
  558. * participant is joining
  559. * @return $this Fluent Builder
  560. */
  561. public function setConferenceRecord(string $conferenceRecord): self {
  562. $this->options['conferenceRecord'] = $conferenceRecord;
  563. return $this;
  564. }
  565. /**
  566. * 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`.
  567. *
  568. * @param string $conferenceTrim Whether to trim leading and trailing silence
  569. * from your recorded conference audio files
  570. * @return $this Fluent Builder
  571. */
  572. public function setConferenceTrim(string $conferenceTrim): self {
  573. $this->options['conferenceTrim'] = $conferenceTrim;
  574. return $this;
  575. }
  576. /**
  577. * 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.
  578. *
  579. * @param string $conferenceStatusCallback The callback URL for conference
  580. * events
  581. * @return $this Fluent Builder
  582. */
  583. public function setConferenceStatusCallback(string $conferenceStatusCallback): self {
  584. $this->options['conferenceStatusCallback'] = $conferenceStatusCallback;
  585. return $this;
  586. }
  587. /**
  588. * The HTTP method we should use to call `conference_status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
  589. *
  590. * @param string $conferenceStatusCallbackMethod HTTP method for requesting
  591. * `conference_status_callback`
  592. * URL
  593. * @return $this Fluent Builder
  594. */
  595. public function setConferenceStatusCallbackMethod(string $conferenceStatusCallbackMethod): self {
  596. $this->options['conferenceStatusCallbackMethod'] = $conferenceStatusCallbackMethod;
  597. return $this;
  598. }
  599. /**
  600. * The conference state changes that should generate a call to `conference_status_callback`. Can be: `start`, `end`, `join`, `leave`, `mute`, `hold`, `modify`, `speaker`, and `announcement`. Separate multiple values with a space. Defaults to `start end`.
  601. *
  602. * @param string[] $conferenceStatusCallbackEvent The conference state changes
  603. * that should generate a call
  604. * to
  605. * `conference_status_callback`
  606. * @return $this Fluent Builder
  607. */
  608. public function setConferenceStatusCallbackEvent(array $conferenceStatusCallbackEvent): self {
  609. $this->options['conferenceStatusCallbackEvent'] = $conferenceStatusCallbackEvent;
  610. return $this;
  611. }
  612. /**
  613. * The recording channels for the final recording. Can be: `mono` or `dual` and the default is `mono`.
  614. *
  615. * @param string $recordingChannels Specify `mono` or `dual` recording channels
  616. * @return $this Fluent Builder
  617. */
  618. public function setRecordingChannels(string $recordingChannels): self {
  619. $this->options['recordingChannels'] = $recordingChannels;
  620. return $this;
  621. }
  622. /**
  623. * The URL that we should call using the `recording_status_callback_method` when the recording status changes.
  624. *
  625. * @param string $recordingStatusCallback The URL that we should call using the
  626. * `recording_status_callback_method`
  627. * when the recording status changes
  628. * @return $this Fluent Builder
  629. */
  630. public function setRecordingStatusCallback(string $recordingStatusCallback): self {
  631. $this->options['recordingStatusCallback'] = $recordingStatusCallback;
  632. return $this;
  633. }
  634. /**
  635. * The HTTP method we should use when we call `recording_status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
  636. *
  637. * @param string $recordingStatusCallbackMethod The HTTP method we should use
  638. * when we call
  639. * `recording_status_callback`
  640. * @return $this Fluent Builder
  641. */
  642. public function setRecordingStatusCallbackMethod(string $recordingStatusCallbackMethod): self {
  643. $this->options['recordingStatusCallbackMethod'] = $recordingStatusCallbackMethod;
  644. return $this;
  645. }
  646. /**
  647. * The SIP username used for authentication.
  648. *
  649. * @param string $sipAuthUsername The SIP username used for authentication
  650. * @return $this Fluent Builder
  651. */
  652. public function setSipAuthUsername(string $sipAuthUsername): self {
  653. $this->options['sipAuthUsername'] = $sipAuthUsername;
  654. return $this;
  655. }
  656. /**
  657. * The SIP password for authentication.
  658. *
  659. * @param string $sipAuthPassword The SIP password for authentication
  660. * @return $this Fluent Builder
  661. */
  662. public function setSipAuthPassword(string $sipAuthPassword): self {
  663. $this->options['sipAuthPassword'] = $sipAuthPassword;
  664. return $this;
  665. }
  666. /**
  667. * 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`.
  668. *
  669. * @param string $region The region where we should mix the conference audio
  670. * @return $this Fluent Builder
  671. */
  672. public function setRegion(string $region): self {
  673. $this->options['region'] = $region;
  674. return $this;
  675. }
  676. /**
  677. * The URL we should call using the `conference_recording_status_callback_method` when the conference recording is available.
  678. *
  679. * @param string $conferenceRecordingStatusCallback The URL we should call
  680. * using the
  681. * `conference_recording_status_callback_method` when the conference recording is available
  682. * @return $this Fluent Builder
  683. */
  684. public function setConferenceRecordingStatusCallback(string $conferenceRecordingStatusCallback): self {
  685. $this->options['conferenceRecordingStatusCallback'] = $conferenceRecordingStatusCallback;
  686. return $this;
  687. }
  688. /**
  689. * The HTTP method we should use to call `conference_recording_status_callback`. Can be: `GET` or `POST` and defaults to `POST`.
  690. *
  691. * @param string $conferenceRecordingStatusCallbackMethod The HTTP method we
  692. * should use to call
  693. * `conference_recording_status_callback`
  694. * @return $this Fluent Builder
  695. */
  696. public function setConferenceRecordingStatusCallbackMethod(string $conferenceRecordingStatusCallbackMethod): self {
  697. $this->options['conferenceRecordingStatusCallbackMethod'] = $conferenceRecordingStatusCallbackMethod;
  698. return $this;
  699. }
  700. /**
  701. * The recording state changes that should generate a call to `recording_status_callback`. Can be: `started`, `in-progress`, `paused`, `resumed`, `stopped`, `completed`, `failed`, and `absent`. Separate multiple values with a space, ex: `'in-progress completed failed'`.
  702. *
  703. * @param string[] $recordingStatusCallbackEvent The recording state changes
  704. * that should generate a call to
  705. * `recording_status_callback`
  706. * @return $this Fluent Builder
  707. */
  708. public function setRecordingStatusCallbackEvent(array $recordingStatusCallbackEvent): self {
  709. $this->options['recordingStatusCallbackEvent'] = $recordingStatusCallbackEvent;
  710. return $this;
  711. }
  712. /**
  713. * The conference recording state changes that generate a call to `conference_recording_status_callback`. Can be: `in-progress`, `completed`, `failed`, and `absent`. Separate multiple values with a space, ex: `'in-progress completed failed'`
  714. *
  715. * @param string[] $conferenceRecordingStatusCallbackEvent The conference
  716. * recording state
  717. * changes that should
  718. * generate a call to
  719. * `conference_recording_status_callback`
  720. * @return $this Fluent Builder
  721. */
  722. public function setConferenceRecordingStatusCallbackEvent(array $conferenceRecordingStatusCallbackEvent): self {
  723. $this->options['conferenceRecordingStatusCallbackEvent'] = $conferenceRecordingStatusCallbackEvent;
  724. return $this;
  725. }
  726. /**
  727. * Whether the participant is coaching another call. Can be: `true` or `false`. If not present, defaults to `false` unless `call_sid_to_coach` is defined. If `true`, `call_sid_to_coach` must be defined.
  728. *
  729. * @param bool $coaching Indicates if the participant changed to coach
  730. * @return $this Fluent Builder
  731. */
  732. public function setCoaching(bool $coaching): self {
  733. $this->options['coaching'] = $coaching;
  734. return $this;
  735. }
  736. /**
  737. * The SID of the participant who is being `coached`. The participant being coached is the only participant who can hear the participant who is `coaching`.
  738. *
  739. * @param string $callSidToCoach The SID of the participant who is being
  740. * `coached`
  741. * @return $this Fluent Builder
  742. */
  743. public function setCallSidToCoach(string $callSidToCoach): self {
  744. $this->options['callSidToCoach'] = $callSidToCoach;
  745. return $this;
  746. }
  747. /**
  748. * Jitter buffer size for the connecting participant. Twilio will use this setting to apply Jitter Buffer before participant's audio is mixed into the conference. Can be: `off`, `small`, `medium`, and `large`. Default to `large`.
  749. *
  750. * @param string $jitterBufferSize Jitter Buffer size for the connecting
  751. * participant
  752. * @return $this Fluent Builder
  753. */
  754. public function setJitterBufferSize(string $jitterBufferSize): self {
  755. $this->options['jitterBufferSize'] = $jitterBufferSize;
  756. return $this;
  757. }
  758. /**
  759. * 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)
  760. *
  761. * @param string $byoc BYOC trunk SID (Beta)
  762. * @return $this Fluent Builder
  763. */
  764. public function setByoc(string $byoc): self {
  765. $this->options['byoc'] = $byoc;
  766. return $this;
  767. }
  768. /**
  769. * The phone number, Client identifier, or username portion of SIP address that made this call. Phone numbers are in [E.164](https://www.twilio.com/docs/glossary/what-e164) format (e.g., +16175551212). Client identifiers are formatted `client:name`. If using a phone number, it must be a Twilio number or a Verified [outgoing caller id](https://www.twilio.com/docs/voice/api/outgoing-caller-ids) for your account. If the `to` parameter is a phone number, `callerId` must also be a phone number. If `to` is sip address, this value of `callerId` should be a username portion to be used to populate the From header that is passed to the SIP endpoint.
  770. *
  771. * @param string $callerId The phone number, Client identifier, or username
  772. * portion of SIP address that made this call.
  773. * @return $this Fluent Builder
  774. */
  775. public function setCallerId(string $callerId): self {
  776. $this->options['callerId'] = $callerId;
  777. return $this;
  778. }
  779. /**
  780. * 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)
  781. *
  782. * @param string $callReason Reason for the call (Branded Calls Beta)
  783. * @return $this Fluent Builder
  784. */
  785. public function setCallReason(string $callReason): self {
  786. $this->options['callReason'] = $callReason;
  787. return $this;
  788. }
  789. /**
  790. * 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 sent from Twilio. `both` records the audio that is received and sent by Twilio.
  791. *
  792. * @param string $recordingTrack The track(s) to record
  793. * @return $this Fluent Builder
  794. */
  795. public function setRecordingTrack(string $recordingTrack): self {
  796. $this->options['recordingTrack'] = $recordingTrack;
  797. return $this;
  798. }
  799. /**
  800. * The maximum duration of the call in seconds. Constraints depend on account and configuration.
  801. *
  802. * @param int $timeLimit The maximum duration of the call in seconds.
  803. * @return $this Fluent Builder
  804. */
  805. public function setTimeLimit(int $timeLimit): self {
  806. $this->options['timeLimit'] = $timeLimit;
  807. return $this;
  808. }
  809. /**
  810. * Provide a friendly representation
  811. *
  812. * @return string Machine friendly representation
  813. */
  814. public function __toString(): string {
  815. $options = \http_build_query(Values::of($this->options), '', ' ');
  816. return '[Twilio.Api.V2010.CreateParticipantOptions ' . $options . ']';
  817. }
  818. }
  819. class ReadParticipantOptions extends Options {
  820. /**
  821. * @param bool $muted Whether to return only participants that are muted
  822. * @param bool $hold Whether to return only participants that are on hold
  823. * @param bool $coaching Whether to return only participants who are coaching
  824. * another call
  825. */
  826. public function __construct(bool $muted = Values::NONE, bool $hold = Values::NONE, bool $coaching = Values::NONE) {
  827. $this->options['muted'] = $muted;
  828. $this->options['hold'] = $hold;
  829. $this->options['coaching'] = $coaching;
  830. }
  831. /**
  832. * Whether to return only participants that are muted. Can be: `true` or `false`.
  833. *
  834. * @param bool $muted Whether to return only participants that are muted
  835. * @return $this Fluent Builder
  836. */
  837. public function setMuted