twilio-ruby 5.0.0.rc18 → 5.0.0.rc19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (369) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +9 -0
  3. data/lib/twilio-ruby/jwt/access_token.rb +25 -0
  4. data/lib/twilio-ruby/rest/accounts.rb +40 -0
  5. data/lib/twilio-ruby/rest/accounts/v1.rb +35 -0
  6. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +102 -0
  7. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +352 -0
  8. data/lib/twilio-ruby/rest/api.rb +30 -34
  9. data/lib/twilio-ruby/rest/api/v2010.rb +28 -32
  10. data/lib/twilio-ruby/rest/api/v2010/account.rb +132 -150
  11. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +71 -55
  12. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +29 -29
  13. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +58 -58
  14. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +37 -37
  15. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +45 -45
  16. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +39 -39
  17. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +39 -39
  18. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +39 -39
  19. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +102 -123
  20. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +33 -33
  21. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +38 -38
  22. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +52 -52
  23. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +42 -37
  24. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +83 -40
  25. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +131 -43
  26. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +42 -42
  27. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +172 -96
  28. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +404 -0
  29. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +332 -0
  30. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +62 -57
  31. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +62 -57
  32. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +62 -57
  33. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +37 -37
  34. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +78 -85
  35. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +19 -19
  36. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +47 -57
  37. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +18 -18
  38. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +18 -18
  39. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +46 -46
  40. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +40 -40
  41. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +50 -50
  42. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +36 -36
  43. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +101 -68
  44. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +372 -0
  45. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +356 -0
  46. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +42 -42
  47. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +43 -43
  48. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +37 -37
  49. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +27 -16
  50. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +48 -48
  51. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +43 -43
  52. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +65 -60
  53. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +43 -38
  54. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +43 -38
  55. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +48 -48
  56. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +44 -44
  57. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +20 -20
  58. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +42 -42
  59. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +13 -13
  60. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +78 -82
  61. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +45 -73
  62. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +45 -73
  63. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +45 -73
  64. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +45 -73
  65. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +45 -73
  66. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +45 -73
  67. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +45 -73
  68. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +45 -73
  69. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +52 -52
  70. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +18 -18
  71. data/lib/twilio-ruby/rest/chat.rb +16 -9
  72. data/lib/twilio-ruby/rest/chat/v1.rb +4 -4
  73. data/lib/twilio-ruby/rest/chat/v1/credential.rb +53 -47
  74. data/lib/twilio-ruby/rest/chat/v1/service.rb +446 -69
  75. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +114 -69
  76. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +363 -0
  77. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +99 -44
  78. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +76 -54
  79. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +45 -45
  80. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +101 -46
  81. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +223 -0
  82. data/lib/twilio-ruby/rest/chat/v2.rb +44 -0
  83. data/lib/twilio-ruby/rest/chat/v2/credential.rb +381 -0
  84. data/lib/twilio-ruby/rest/chat/v2/service.rb +633 -0
  85. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +513 -0
  86. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +363 -0
  87. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +406 -0
  88. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +418 -0
  89. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +373 -0
  90. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +433 -0
  91. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +223 -0
  92. data/lib/twilio-ruby/rest/client.rb +91 -75
  93. data/lib/twilio-ruby/rest/fax.rb +40 -0
  94. data/lib/twilio-ruby/rest/fax/v1.rb +35 -0
  95. data/lib/twilio-ruby/rest/fax/v1/fax.rb +397 -0
  96. data/lib/twilio-ruby/rest/ip_messaging.rb +16 -9
  97. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +4 -4
  98. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +53 -47
  99. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +446 -69
  100. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +114 -69
  101. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +363 -0
  102. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +99 -44
  103. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +76 -54
  104. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +45 -45
  105. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +101 -46
  106. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +223 -0
  107. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +44 -0
  108. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +381 -0
  109. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +633 -0
  110. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +513 -0
  111. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +363 -0
  112. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +406 -0
  113. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +418 -0
  114. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +373 -0
  115. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +433 -0
  116. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +223 -0
  117. data/lib/twilio-ruby/rest/lookups.rb +6 -6
  118. data/lib/twilio-ruby/rest/lookups/v1.rb +3 -3
  119. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +30 -25
  120. data/lib/twilio-ruby/rest/messaging.rb +40 -0
  121. data/lib/twilio-ruby/rest/messaging/v1.rb +35 -0
  122. data/lib/twilio-ruby/rest/messaging/v1/service.rb +524 -0
  123. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +331 -0
  124. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +336 -0
  125. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +336 -0
  126. data/lib/twilio-ruby/rest/monitor.rb +7 -7
  127. data/lib/twilio-ruby/rest/monitor/v1.rb +4 -4
  128. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +57 -85
  129. data/lib/twilio-ruby/rest/monitor/v1/event.rb +63 -81
  130. data/lib/twilio-ruby/rest/notify.rb +7 -7
  131. data/lib/twilio-ruby/rest/notify/v1.rb +4 -4
  132. data/lib/twilio-ruby/rest/notify/v1/credential.rb +53 -47
  133. data/lib/twilio-ruby/rest/notify/v1/service.rb +148 -60
  134. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +70 -86
  135. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +47 -33
  136. data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +206 -0
  137. data/lib/twilio-ruby/rest/notify/v1/service/user.rb +418 -0
  138. data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +247 -0
  139. data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +405 -0
  140. data/lib/twilio-ruby/rest/preview.rb +34 -19
  141. data/lib/twilio-ruby/rest/preview/marketplace.rb +44 -0
  142. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +310 -0
  143. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +284 -0
  144. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +411 -0
  145. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +322 -0
  146. data/lib/twilio-ruby/rest/preview/sync.rb +3 -3
  147. data/lib/twilio-ruby/rest/preview/sync/service.rb +72 -61
  148. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +85 -46
  149. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +377 -0
  150. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +79 -47
  151. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +46 -46
  152. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +377 -0
  153. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +79 -47
  154. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +46 -46
  155. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +377 -0
  156. data/lib/twilio-ruby/rest/preview/wireless.rb +12 -12
  157. data/lib/twilio-ruby/rest/preview/wireless/command.rb +68 -45
  158. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +137 -73
  159. data/lib/twilio-ruby/rest/preview/wireless/{device.rb → sim.rb} +127 -150
  160. data/lib/twilio-ruby/rest/preview/wireless/{device → sim}/usage.rb +49 -49
  161. data/lib/twilio-ruby/rest/pricing.rb +8 -8
  162. data/lib/twilio-ruby/rest/pricing/v1.rb +5 -5
  163. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +16 -16
  164. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +33 -33
  165. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +16 -16
  166. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +33 -38
  167. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +18 -18
  168. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +33 -33
  169. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +26 -26
  170. data/lib/twilio-ruby/rest/taskrouter.rb +6 -6
  171. data/lib/twilio-ruby/rest/taskrouter/v1.rb +3 -3
  172. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +103 -82
  173. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +48 -43
  174. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +42 -42
  175. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +114 -75
  176. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +50 -40
  177. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +35 -35
  178. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +110 -78
  179. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +31 -30
  180. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +24 -24
  181. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +71 -61
  182. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +50 -40
  183. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +45 -45
  184. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +28 -23
  185. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +28 -23
  186. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +60 -50
  187. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +29 -24
  188. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +34 -29
  189. data/lib/twilio-ruby/rest/trunking.rb +6 -6
  190. data/lib/twilio-ruby/rest/trunking/v1.rb +3 -3
  191. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +67 -67
  192. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +39 -39
  193. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +39 -39
  194. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +47 -47
  195. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +58 -58
  196. data/lib/twilio-ruby/rest/video.rb +44 -0
  197. data/lib/twilio-ruby/rest/video/v1.rb +44 -0
  198. data/lib/twilio-ruby/rest/video/v1/recording.rb +341 -0
  199. data/lib/twilio-ruby/rest/video/v1/room.rb +411 -0
  200. data/lib/twilio-ruby/version.rb +1 -1
  201. data/spec/integration/accounts/v1/credential/public_key_spec.rb +226 -0
  202. data/spec/integration/accounts/v1/credential_spec.rb +10 -0
  203. data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +7 -7
  204. data/spec/integration/api/v2010/account/address_spec.rb +32 -24
  205. data/spec/integration/api/v2010/account/application_spec.rb +24 -24
  206. data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +11 -11
  207. data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +7 -7
  208. data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +7 -7
  209. data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +7 -7
  210. data/spec/integration/api/v2010/account/available_phone_number_spec.rb +11 -11
  211. data/spec/integration/api/v2010/account/call/feedback_spec.rb +14 -14
  212. data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +14 -14
  213. data/spec/integration/api/v2010/account/call/notification_spec.rb +15 -15
  214. data/spec/integration/api/v2010/account/call/recording_spec.rb +15 -15
  215. data/spec/integration/api/v2010/account/call_spec.rb +24 -24
  216. data/spec/integration/api/v2010/account/conference/participant_spec.rb +97 -25
  217. data/spec/integration/api/v2010/account/conference_spec.rb +56 -17
  218. data/spec/integration/api/v2010/account/connect_app_spec.rb +15 -15
  219. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +135 -0
  220. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +223 -0
  221. data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +12 -12
  222. data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +12 -12
  223. data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +12 -12
  224. data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +32 -24
  225. data/spec/integration/api/v2010/account/key_spec.rb +19 -19
  226. data/spec/integration/api/v2010/account/message/feedback_spec.rb +25 -3
  227. data/spec/integration/api/v2010/account/message/media_spec.rb +15 -15
  228. data/spec/integration/api/v2010/account/message_spec.rb +34 -27
  229. data/spec/integration/api/v2010/account/new_key_spec.rb +5 -5
  230. data/spec/integration/api/v2010/account/new_signing_key_spec.rb +5 -5
  231. data/spec/integration/api/v2010/account/notification_spec.rb +15 -15
  232. data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +19 -19
  233. data/spec/integration/api/v2010/account/queue/member_spec.rb +15 -15
  234. data/spec/integration/api/v2010/account/queue_spec.rb +30 -27
  235. data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +175 -0
  236. data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +166 -0
  237. data/spec/integration/api/v2010/account/recording/transcription_spec.rb +15 -15
  238. data/spec/integration/api/v2010/account/recording_spec.rb +16 -16
  239. data/spec/integration/api/v2010/account/short_code_spec.rb +15 -15
  240. data/spec/integration/api/v2010/account/signing_key_spec.rb +19 -19
  241. data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +24 -24
  242. data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +24 -24
  243. data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +20 -20
  244. data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +20 -20
  245. data/spec/integration/api/v2010/account/sip/domain_spec.rb +24 -24
  246. data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +24 -24
  247. data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +24 -24
  248. data/spec/integration/api/v2010/account/sip_spec.rb +1 -1
  249. data/spec/integration/api/v2010/account/token_spec.rb +6 -6
  250. data/spec/integration/api/v2010/account/transcription_spec.rb +15 -15
  251. data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +7 -7
  252. data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +7 -7
  253. data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +7 -7
  254. data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +7 -7
  255. data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +7 -7
  256. data/spec/integration/api/v2010/account/usage/record/today_spec.rb +7 -7
  257. data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +7 -7
  258. data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +7 -7
  259. data/spec/integration/api/v2010/account/usage/record_spec.rb +7 -7
  260. data/spec/integration/api/v2010/account/usage/trigger_spec.rb +27 -27
  261. data/spec/integration/api/v2010/account/usage_spec.rb +1 -1
  262. data/spec/integration/api/v2010/account/validation_request_spec.rb +23 -3
  263. data/spec/integration/api/v2010/account_spec.rb +20 -24
  264. data/spec/integration/chat/v1/credential_spec.rb +31 -31
  265. data/spec/integration/chat/v1/service/channel/invite_spec.rb +210 -0
  266. data/spec/integration/chat/v1/service/channel/member_spec.rb +102 -31
  267. data/spec/integration/chat/v1/service/channel/message_spec.rb +210 -16
  268. data/spec/integration/chat/v1/service/channel_spec.rb +71 -55
  269. data/spec/integration/chat/v1/service/role_spec.rb +33 -33
  270. data/spec/integration/chat/v1/service/user/user_channel_spec.rb +92 -0
  271. data/spec/integration/chat/v1/service/user_spec.rb +57 -33
  272. data/spec/integration/chat/v1/service_spec.rb +142 -106
  273. data/spec/integration/chat/v2/credential_spec.rb +223 -0
  274. data/spec/integration/chat/v2/service/channel/invite_spec.rb +210 -0
  275. data/spec/integration/chat/v2/service/channel/member_spec.rb +284 -0
  276. data/spec/integration/chat/v2/service/channel/message_spec.rb +294 -0
  277. data/spec/integration/chat/v2/service/channel_spec.rb +275 -0
  278. data/spec/integration/chat/v2/service/role_spec.rb +263 -0
  279. data/spec/integration/chat/v2/service/user/user_channel_spec.rb +92 -0
  280. data/spec/integration/chat/v2/service/user_spec.rb +266 -0
  281. data/spec/integration/chat/v2/service_spec.rb +325 -0
  282. data/spec/integration/fax/v1/fax_spec.rb +231 -0
  283. data/spec/integration/ip_messaging/v1/credential_spec.rb +31 -31
  284. data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +210 -0
  285. data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +102 -31
  286. data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +210 -16
  287. data/spec/integration/ip_messaging/v1/service/channel_spec.rb +71 -55
  288. data/spec/integration/ip_messaging/v1/service/role_spec.rb +33 -33
  289. data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +92 -0
  290. data/spec/integration/ip_messaging/v1/service/user_spec.rb +57 -33
  291. data/spec/integration/ip_messaging/v1/service_spec.rb +142 -106
  292. data/spec/integration/ip_messaging/v2/credential_spec.rb +223 -0
  293. data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +210 -0
  294. data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +284 -0
  295. data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +294 -0
  296. data/spec/integration/ip_messaging/v2/service/channel_spec.rb +275 -0
  297. data/spec/integration/ip_messaging/v2/service/role_spec.rb +263 -0
  298. data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +92 -0
  299. data/spec/integration/ip_messaging/v2/service/user_spec.rb +266 -0
  300. data/spec/integration/ip_messaging/v2/service_spec.rb +325 -0
  301. data/spec/integration/lookups/v1/phone_number_spec.rb +5 -5
  302. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +170 -0
  303. data/spec/integration/messaging/v1/service/phone_number_spec.rb +173 -0
  304. data/spec/integration/messaging/v1/service/short_code_spec.rb +173 -0
  305. data/spec/integration/messaging/v1/service_spec.rb +243 -0
  306. data/spec/integration/monitor/v1/alert_spec.rb +57 -57
  307. data/spec/integration/monitor/v1/event_spec.rb +11 -11
  308. data/spec/integration/notify/v1/credential_spec.rb +23 -23
  309. data/spec/integration/notify/v1/service/binding_spec.rb +88 -71
  310. data/spec/integration/notify/v1/service/notification_spec.rb +7 -5
  311. data/spec/integration/notify/v1/service/segment_spec.rb +84 -0
  312. data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +118 -0
  313. data/spec/integration/notify/v1/service/user/user_binding_spec.rb +235 -0
  314. data/spec/integration/notify/v1/service/user_spec.rb +213 -0
  315. data/spec/integration/notify/v1/service_spec.rb +50 -30
  316. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +121 -0
  317. data/spec/integration/preview/marketplace/available_add_on_spec.rb +142 -0
  318. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +164 -0
  319. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +252 -0
  320. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +206 -0
  321. data/spec/integration/preview/sync/service/document_spec.rb +179 -17
  322. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +167 -11
  323. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +206 -0
  324. data/spec/integration/preview/sync/service/sync_list_spec.rb +143 -9
  325. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +167 -11
  326. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +206 -0
  327. data/spec/integration/preview/sync/service/sync_map_spec.rb +143 -9
  328. data/spec/integration/preview/sync/service_spec.rb +171 -11
  329. data/spec/integration/preview/wireless/command_spec.rb +120 -9
  330. data/spec/integration/preview/wireless/rate_plan_spec.rb +228 -7
  331. data/spec/integration/preview/wireless/sim/usage_spec.rb +49 -0
  332. data/spec/integration/preview/wireless/sim_spec.rb +184 -0
  333. data/spec/integration/pricing/v1/messaging/country_spec.rb +101 -5
  334. data/spec/integration/pricing/v1/messaging_spec.rb +1 -1
  335. data/spec/integration/pricing/v1/phone_number/country_spec.rb +11 -11
  336. data/spec/integration/pricing/v1/phone_number_spec.rb +1 -1
  337. data/spec/integration/pricing/v1/voice/country_spec.rb +11 -11
  338. data/spec/integration/pricing/v1/voice/number_spec.rb +5 -5
  339. data/spec/integration/pricing/v1/voice_spec.rb +1 -1
  340. data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +29 -33
  341. data/spec/integration/taskrouter/v1/workspace/event_spec.rb +11 -11
  342. data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +15 -15
  343. data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +11 -11
  344. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +12 -10
  345. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +17 -16
  346. data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +52 -36
  347. data/spec/integration/taskrouter/v1/workspace/task_spec.rb +101 -46
  348. data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +15 -15
  349. data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +15 -15
  350. data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +6 -5
  351. data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +6 -5
  352. data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +39 -27
  353. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +13 -11
  354. data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +47 -35
  355. data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +10 -8
  356. data/spec/integration/taskrouter/v1/workspace_spec.rb +28 -24
  357. data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +20 -20
  358. data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +62 -62
  359. data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +23 -23
  360. data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +19 -19
  361. data/spec/integration/trunking/v1/trunk_spec.rb +23 -23
  362. data/spec/integration/video/v1/recording_spec.rb +120 -0
  363. data/spec/integration/video/v1/room_spec.rb +225 -0
  364. data/spec/jwt/access_token_spec.rb +22 -0
  365. metadata +158 -12
  366. data/lib/twilio-ruby/rest/api/v2010/account/sandbox.rb +0 -287
  367. data/spec/integration/api/v2010/account/sandbox_spec.rb +0 -99
  368. data/spec/integration/preview/wireless/device/usage_spec.rb +0 -25
  369. data/spec/integration/preview/wireless/device_spec.rb +0 -72
@@ -2,7 +2,7 @@
2
2
  # This code was generated by
3
3
  # \ / _ _ _| _ _
4
4
  # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
5
+ # / /
6
6
 
7
7
  module Twilio
8
8
  module REST
@@ -14,13 +14,13 @@ module Twilio
14
14
  ##
15
15
  # Initialize the MobileList
16
16
  # @param [Version] version Version that contains the resource
17
- # @param [String] account_sid A 34 character string that uniquely identifies this
18
- # resource.
19
- # @param [String] country_code The country_code
17
+ # @param [String] account_sid The 34 character string that uniquely identifies
18
+ # your account.
19
+ # @param [String] country_code The ISO Country code to lookup phone numbers for.
20
20
  # @return [MobileList] MobileList
21
21
  def initialize(version, account_sid: nil, country_code: nil)
22
22
  super(version)
23
-
23
+
24
24
  # Path Solution
25
25
  @solution = {
26
26
  account_sid: account_sid,
@@ -28,7 +28,7 @@ module Twilio
28
28
  }
29
29
  @uri = "/Accounts/#{@solution[:account_sid]}/AvailablePhoneNumbers/#{@solution[:country_code]}/Mobile.json"
30
30
  end
31
-
31
+
32
32
  ##
33
33
  # Lists MobileInstance records from the API as a list.
34
34
  # Unlike stream(), this operation is eager and will load `limit` records into
@@ -80,7 +80,7 @@ module Twilio
80
80
  page_size: page_size
81
81
  ).entries
82
82
  end
83
-
83
+
84
84
  ##
85
85
  # Streams MobileInstance records from the API as an Enumerable.
86
86
  # This operation lazily loads records as efficiently as possible until the limit
@@ -112,7 +112,7 @@ module Twilio
112
112
  # @return [Enumerable] Enumerable that will yield up to limit results
113
113
  def stream(area_code: nil, contains: nil, sms_enabled: nil, mms_enabled: nil, voice_enabled: nil, exclude_all_address_required: nil, exclude_local_address_required: nil, exclude_foreign_address_required: nil, beta: nil, near_number: nil, near_lat_long: nil, distance: nil, in_postal_code: nil, in_region: nil, in_rate_center: nil, in_lata: nil, limit: nil, page_size: nil)
114
114
  limits = @version.read_limits(limit, page_size)
115
-
115
+
116
116
  page = self.page(
117
117
  area_code: area_code,
118
118
  contains: contains,
@@ -132,10 +132,10 @@ module Twilio
132
132
  in_lata: in_lata,
133
133
  page_size: limits[:page_size],
134
134
  )
135
-
135
+
136
136
  @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
137
137
  end
138
-
138
+
139
139
  ##
140
140
  # When passed a block, yields MobileInstance records from the API.
141
141
  # This operation lazily loads records as efficiently as possible until the limit
@@ -166,16 +166,16 @@ module Twilio
166
166
  # limit with the most efficient page size, i.e. min(limit, 1000)
167
167
  def each
168
168
  limits = @version.read_limits
169
-
169
+
170
170
  page = self.page(
171
171
  page_size: limits[:page_size],
172
172
  )
173
-
173
+
174
174
  @version.stream(page,
175
175
  limit: limits[:limit],
176
176
  page_limit: limits[:page_limit]).each {|x| yield x}
177
177
  end
178
-
178
+
179
179
  ##
180
180
  # Retrieve a single page of MobileInstance records from the API.
181
181
  # Request is executed immediately.
@@ -230,31 +230,31 @@ module Twilio
230
230
  )
231
231
  return MobilePage.new(@version, response, @solution)
232
232
  end
233
-
233
+
234
234
  ##
235
235
  # Provide a user friendly representation
236
236
  def to_s
237
237
  '#<Twilio.Api.V2010.MobileList>'
238
238
  end
239
239
  end
240
-
240
+
241
241
  class MobilePage < Page
242
242
  ##
243
243
  # Initialize the MobilePage
244
244
  # @param [Version] version Version that contains the resource
245
245
  # @param [Response] response Response from the API
246
246
  # @param [Hash] solution Path solution for the resource
247
- # @param [String] account_sid A 34 character string that uniquely identifies this
248
- # resource.
249
- # @param [String] country_code The country_code
247
+ # @param [String] account_sid The 34 character string that uniquely identifies
248
+ # your account.
249
+ # @param [String] country_code The ISO Country code to lookup phone numbers for.
250
250
  # @return [MobilePage] MobilePage
251
251
  def initialize(version, response, solution)
252
252
  super(version, response)
253
-
253
+
254
254
  # Path Solution
255
255
  @solution = solution
256
256
  end
257
-
257
+
258
258
  ##
259
259
  # Build an instance of MobileInstance
260
260
  # @param [Hash] payload Payload response from the API
@@ -267,26 +267,26 @@ module Twilio
267
267
  country_code: @solution[:country_code],
268
268
  )
269
269
  end
270
-
270
+
271
271
  ##
272
272
  # Provide a user friendly representation
273
273
  def to_s
274
274
  '<Twilio.Api.V2010.MobilePage>'
275
275
  end
276
276
  end
277
-
277
+
278
278
  class MobileInstance < InstanceResource
279
279
  ##
280
280
  # Initialize the MobileInstance
281
281
  # @param [Version] version Version that contains the resource
282
282
  # @param [Hash] payload payload that contains response from Twilio
283
- # @param [String] account_sid A 34 character string that uniquely identifies this
284
- # resource.
285
- # @param [String] country_code The country_code
283
+ # @param [String] account_sid The 34 character string that uniquely identifies
284
+ # your account.
285
+ # @param [String] country_code The ISO Country code to lookup phone numbers for.
286
286
  # @return [MobileInstance] MobileInstance
287
287
  def initialize(version, payload, account_sid: nil, country_code: nil)
288
288
  super(version)
289
-
289
+
290
290
  # Marshaled Properties
291
291
  @properties = {
292
292
  'friendly_name' => payload['friendly_name'],
@@ -303,55 +303,55 @@ module Twilio
303
303
  'capabilities' => payload['capabilities'],
304
304
  }
305
305
  end
306
-
306
+
307
307
  def friendly_name
308
308
  @properties['friendly_name']
309
309
  end
310
-
310
+
311
311
  def phone_number
312
312
  @properties['phone_number']
313
313
  end
314
-
314
+
315
315
  def lata
316
316
  @properties['lata']
317
317
  end
318
-
318
+
319
319
  def rate_center
320
320
  @properties['rate_center']
321
321
  end
322
-
322
+
323
323
  def latitude
324
324
  @properties['latitude']
325
325
  end
326
-
326
+
327
327
  def longitude
328
328
  @properties['longitude']
329
329
  end
330
-
330
+
331
331
  def region
332
332
  @properties['region']
333
333
  end
334
-
334
+
335
335
  def postal_code
336
336
  @properties['postal_code']
337
337
  end
338
-
338
+
339
339
  def iso_country
340
340
  @properties['iso_country']
341
341
  end
342
-
342
+
343
343
  def address_requirements
344
344
  @properties['address_requirements']
345
345
  end
346
-
346
+
347
347
  def beta
348
348
  @properties['beta']
349
349
  end
350
-
350
+
351
351
  def capabilities
352
352
  @properties['capabilities']
353
353
  end
354
-
354
+
355
355
  ##
356
356
  # Provide a user friendly representation
357
357
  def to_s
@@ -2,7 +2,7 @@
2
2
  # This code was generated by
3
3
  # \ / _ _ _| _ _
4
4
  # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
5
+ # / /
6
6
 
7
7
  module Twilio
8
8
  module REST
@@ -14,13 +14,13 @@ module Twilio
14
14
  ##
15
15
  # Initialize the TollFreeList
16
16
  # @param [Version] version Version that contains the resource
17
- # @param [String] account_sid A 34 character string that uniquely identifies this
18
- # resource.
19
- # @param [String] country_code The country_code
17
+ # @param [String] account_sid The 34 character string that uniquely identifies
18
+ # your account.
19
+ # @param [String] country_code The ISO Country code to lookup phone numbers for.
20
20
  # @return [TollFreeList] TollFreeList
21
21
  def initialize(version, account_sid: nil, country_code: nil)
22
22
  super(version)
23
-
23
+
24
24
  # Path Solution
25
25
  @solution = {
26
26
  account_sid: account_sid,
@@ -28,7 +28,7 @@ module Twilio
28
28
  }
29
29
  @uri = "/Accounts/#{@solution[:account_sid]}/AvailablePhoneNumbers/#{@solution[:country_code]}/TollFree.json"
30
30
  end
31
-
31
+
32
32
  ##
33
33
  # Lists TollFreeInstance records from the API as a list.
34
34
  # Unlike stream(), this operation is eager and will load `limit` records into
@@ -80,7 +80,7 @@ module Twilio
80
80
  page_size: page_size
81
81
  ).entries
82
82
  end
83
-
83
+
84
84
  ##
85
85
  # Streams TollFreeInstance records from the API as an Enumerable.
86
86
  # This operation lazily loads records as efficiently as possible until the limit
@@ -112,7 +112,7 @@ module Twilio
112
112
  # @return [Enumerable] Enumerable that will yield up to limit results
113
113
  def stream(area_code: nil, contains: nil, sms_enabled: nil, mms_enabled: nil, voice_enabled: nil, exclude_all_address_required: nil, exclude_local_address_required: nil, exclude_foreign_address_required: nil, beta: nil, near_number: nil, near_lat_long: nil, distance: nil, in_postal_code: nil, in_region: nil, in_rate_center: nil, in_lata: nil, limit: nil, page_size: nil)
114
114
  limits = @version.read_limits(limit, page_size)
115
-
115
+
116
116
  page = self.page(
117
117
  area_code: area_code,
118
118
  contains: contains,
@@ -132,10 +132,10 @@ module Twilio
132
132
  in_lata: in_lata,
133
133
  page_size: limits[:page_size],
134
134
  )
135
-
135
+
136
136
  @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
137
137
  end
138
-
138
+
139
139
  ##
140
140
  # When passed a block, yields TollFreeInstance records from the API.
141
141
  # This operation lazily loads records as efficiently as possible until the limit
@@ -166,16 +166,16 @@ module Twilio
166
166
  # limit with the most efficient page size, i.e. min(limit, 1000)
167
167
  def each
168
168
  limits = @version.read_limits
169
-
169
+
170
170
  page = self.page(
171
171
  page_size: limits[:page_size],
172
172
  )
173
-
173
+
174
174
  @version.stream(page,
175
175
  limit: limits[:limit],
176
176
  page_limit: limits[:page_limit]).each {|x| yield x}
177
177
  end
178
-
178
+
179
179
  ##
180
180
  # Retrieve a single page of TollFreeInstance records from the API.
181
181
  # Request is executed immediately.
@@ -230,31 +230,31 @@ module Twilio
230
230
  )
231
231
  return TollFreePage.new(@version, response, @solution)
232
232
  end
233
-
233
+
234
234
  ##
235
235
  # Provide a user friendly representation
236
236
  def to_s
237
237
  '#<Twilio.Api.V2010.TollFreeList>'
238
238
  end
239
239
  end
240
-
240
+
241
241
  class TollFreePage < Page
242
242
  ##
243
243
  # Initialize the TollFreePage
244
244
  # @param [Version] version Version that contains the resource
245
245
  # @param [Response] response Response from the API
246
246
  # @param [Hash] solution Path solution for the resource
247
- # @param [String] account_sid A 34 character string that uniquely identifies this
248
- # resource.
249
- # @param [String] country_code The country_code
247
+ # @param [String] account_sid The 34 character string that uniquely identifies
248
+ # your account.
249
+ # @param [String] country_code The ISO Country code to lookup phone numbers for.
250
250
  # @return [TollFreePage] TollFreePage
251
251
  def initialize(version, response, solution)
252
252
  super(version, response)
253
-
253
+
254
254
  # Path Solution
255
255
  @solution = solution
256
256
  end
257
-
257
+
258
258
  ##
259
259
  # Build an instance of TollFreeInstance
260
260
  # @param [Hash] payload Payload response from the API
@@ -267,26 +267,26 @@ module Twilio
267
267
  country_code: @solution[:country_code],
268
268
  )
269
269
  end
270
-
270
+
271
271
  ##
272
272
  # Provide a user friendly representation
273
273
  def to_s
274
274
  '<Twilio.Api.V2010.TollFreePage>'
275
275
  end
276
276
  end
277
-
277
+
278
278
  class TollFreeInstance < InstanceResource
279
279
  ##
280
280
  # Initialize the TollFreeInstance
281
281
  # @param [Version] version Version that contains the resource
282
282
  # @param [Hash] payload payload that contains response from Twilio
283
- # @param [String] account_sid A 34 character string that uniquely identifies this
284
- # resource.
285
- # @param [String] country_code The country_code
283
+ # @param [String] account_sid The 34 character string that uniquely identifies
284
+ # your account.
285
+ # @param [String] country_code The ISO Country code to lookup phone numbers for.
286
286
  # @return [TollFreeInstance] TollFreeInstance
287
287
  def initialize(version, payload, account_sid: nil, country_code: nil)
288
288
  super(version)
289
-
289
+
290
290
  # Marshaled Properties
291
291
  @properties = {
292
292
  'friendly_name' => payload['friendly_name'],
@@ -303,55 +303,55 @@ module Twilio
303
303
  'capabilities' => payload['capabilities'],
304
304
  }
305
305
  end
306
-
306
+
307
307
  def friendly_name
308
308
  @properties['friendly_name']
309
309
  end
310
-
310
+
311
311
  def phone_number
312
312
  @properties['phone_number']
313
313
  end
314
-
314
+
315
315
  def lata
316
316
  @properties['lata']
317
317
  end
318
-
318
+
319
319
  def rate_center
320
320
  @properties['rate_center']
321
321
  end
322
-
322
+
323
323
  def latitude
324
324
  @properties['latitude']
325
325
  end
326
-
326
+
327
327
  def longitude
328
328
  @properties['longitude']
329
329
  end
330
-
330
+
331
331
  def region
332
332
  @properties['region']
333
333
  end
334
-
334
+
335
335
  def postal_code
336
336
  @properties['postal_code']
337
337
  end
338
-
338
+
339
339
  def iso_country
340
340
  @properties['iso_country']
341
341
  end
342
-
342
+
343
343
  def address_requirements
344
344
  @properties['address_requirements']
345
345
  end
346
-
346
+
347
347
  def beta
348
348
  @properties['beta']
349
349
  end
350
-
350
+
351
351
  def capabilities
352
352
  @properties['capabilities']
353
353
  end
354
-
354
+
355
355
  ##
356
356
  # Provide a user friendly representation
357
357
  def to_s
@@ -2,7 +2,7 @@
2
2
  # This code was generated by
3
3
  # \ / _ _ _| _ _
4
4
  # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
5
+ # / /
6
6
 
7
7
  module Twilio
8
8
  module REST
@@ -18,17 +18,17 @@ module Twilio
18
18
  # @return [CallList] CallList
19
19
  def initialize(version, account_sid: nil)
20
20
  super(version)
21
-
21
+
22
22
  # Path Solution
23
23
  @solution = {
24
24
  account_sid: account_sid
25
25
  }
26
26
  @uri = "/Accounts/#{@solution[:account_sid]}/Calls.json"
27
-
27
+
28
28
  # Components
29
29
  @feedback_summaries = nil
30
30
  end
31
-
31
+
32
32
  ##
33
33
  # Retrieve a single page of CallInstance records from the API.
34
34
  # Request is executed immediately.
@@ -73,6 +73,11 @@ module Twilio
73
73
  # recording_status_callback_method
74
74
  # @param [String] sip_auth_username The sip_auth_username
75
75
  # @param [String] sip_auth_password The sip_auth_password
76
+ # @param [String] machine_detection Twilio will try to detect if a human, fax
77
+ # machine or answering machine has answered the call. Possible value are `Enable`
78
+ # and `DetectMessageEnd`.
79
+ # @param [String] machine_detection_timeout The integer number of miliseconds that
80
+ # Twilio should wait while machine_detection is performned before timing out.
76
81
  # @param [String] url The fully qualified URL that should be consulted when the
77
82
  # call connects. Just like when you set a URL on a phone number for handling
78
83
  # inbound calls.
@@ -80,7 +85,7 @@ module Twilio
80
85
  # should use to handle this phone call. If this parameter is present, Twilio will
81
86
  # ignore all of the voice URLs passed and use the URLs set on the application.
82
87
  # @return [CallInstance] Newly created CallInstance
83
- def create(to: nil, from: nil, method: nil, fallback_url: nil, fallback_method: nil, status_callback: nil, status_callback_event: nil, status_callback_method: nil, send_digits: nil, if_machine: nil, timeout: nil, record: nil, recording_channels: nil, recording_status_callback: nil, recording_status_callback_method: nil, sip_auth_username: nil, sip_auth_password: nil, url: nil, application_sid: nil)
88
+ def create(to: nil, from: nil, method: nil, fallback_url: nil, fallback_method: nil, status_callback: nil, status_callback_event: nil, status_callback_method: nil, send_digits: nil, if_machine: nil, timeout: nil, record: nil, recording_channels: nil, recording_status_callback: nil, recording_status_callback_method: nil, sip_auth_username: nil, sip_auth_password: nil, machine_detection: nil, machine_detection_timeout: nil, url: nil, application_sid: nil)
84
89
  data = {
85
90
  'To' => to,
86
91
  'From' => from,
@@ -101,21 +106,23 @@ module Twilio
101
106
  'RecordingStatusCallbackMethod' => recording_status_callback_method,
102
107
  'SipAuthUsername' => sip_auth_username,
103
108
  'SipAuthPassword' => sip_auth_password,
109
+ 'MachineDetection' => machine_detection,
110
+ 'MachineDetectionTimeout' => machine_detection_timeout,
104
111
  }
105
-
112
+
106
113
  payload = @version.create(
107
114
  'POST',
108
115
  @uri,
109
116
  data: data
110
117
  )
111
-
118
+
112
119
  return CallInstance.new(
113
120
  @version,
114
121
  payload,
115
122
  account_sid: @solution[:account_sid],
116
123
  )
117
124
  end
118
-
125
+
119
126
  ##
120
127
  # Lists CallInstance records from the API as a list.
121
128
  # Unlike stream(), this operation is eager and will load `limit` records into
@@ -125,12 +132,8 @@ module Twilio
125
132
  # @param [String] parent_call_sid Only show calls spawned by the call with this
126
133
  # Sid
127
134
  # @param [feedback_summary.Status] status Only show calls currently in this status
128
- # @param [Time] start_time_before StartTime to filter on
129
- # @param [Time] start_time StartTime to filter on
130
- # @param [Time] start_time_after: StartTime to filter on
131
- # @param [Time] end_time_before EndTime to filter on
132
- # @param [Time] end_time EndTime to filter on
133
- # @param [Time] end_time_after: EndTime to filter on
135
+ # @param [Time] start_time Only show calls that started on this date
136
+ # @param [Time] end_time Only show call that ended on this date
134
137
  # @param [Integer] limit Upper limit for the number of records to return. stream()
135
138
  # guarantees to never return more than limit. Default is no limit
136
139
  # @param [Integer] page_size Number of records to fetch per request, when not set will use
@@ -138,23 +141,19 @@ module Twilio
138
141
  # but a limit is defined, stream() will attempt to read the
139
142
  # limit with the most efficient page size, i.e. min(limit, 1000)
140
143
  # @return [Array] Array of up to limit results
141
- def list(to: nil, from: nil, parent_call_sid: nil, status: nil, start_time_before: nil, start_time: nil, start_time_after: nil, end_time_before: nil, end_time: nil, end_time_after: nil, limit: nil, page_size: nil)
144
+ def list(to: nil, from: nil, parent_call_sid: nil, status: nil, start_time: nil, end_time: nil, limit: nil, page_size: nil)
142
145
  self.stream(
143
146
  to: to,
144
147
  from: from,
145
148
  parent_call_sid: parent_call_sid,
146
149
  status: status,
147
- start_time_before: start_time_before,
148
150
  start_time: start_time,
149
- start_time_after: start_time_after,
150
- end_time_before: end_time_before,
151
151
  end_time: end_time,
152
- end_time_after: end_time_after,
153
152
  limit: limit,
154
153
  page_size: page_size
155
154
  ).entries
156
155
  end
157
-
156
+
158
157
  ##
159
158
  # Streams CallInstance records from the API as an Enumerable.
160
159
  # This operation lazily loads records as efficiently as possible until the limit
@@ -164,12 +163,8 @@ module Twilio
164
163
  # @param [String] parent_call_sid Only show calls spawned by the call with this
165
164
  # Sid
166
165
  # @param [feedback_summary.Status] status Only show calls currently in this status
167
- # @param [Time] start_time_before StartTime to filter on
168
- # @param [Time] start_time StartTime to filter on
169
- # @param [Time] start_time_after: StartTime to filter on
170
- # @param [Time] end_time_before EndTime to filter on
171
- # @param [Time] end_time EndTime to filter on
172
- # @param [Time] end_time_after: EndTime to filter on
166
+ # @param [Time] start_time Only show calls that started on this date
167
+ # @param [Time] end_time Only show call that ended on this date
173
168
  # @param [Integer] limit Upper limit for the number of records to return. stream()
174
169
  # guarantees to never return more than limit. Default is no limit
175
170
  # @param [Integer] page_size Number of records to fetch per request, when not set will use
@@ -177,26 +172,22 @@ module Twilio
177
172
  # but a limit is defined, stream() will attempt to read the
178
173
  # limit with the most efficient page size, i.e. min(limit, 1000)
179
174
  # @return [Enumerable] Enumerable that will yield up to limit results
180
- def stream(to: nil, from: nil, parent_call_sid: nil, status: nil, start_time_before: nil, start_time: nil, start_time_after: nil, end_time_before: nil, end_time: nil, end_time_after: nil, limit: nil, page_size: nil)
175
+ def stream(to: nil, from: nil, parent_call_sid: nil, status: nil, start_time: nil, end_time: nil, limit: nil, page_size: nil)
181
176
  limits = @version.read_limits(limit, page_size)
182
-
177
+
183
178
  page = self.page(
184
179
  to: to,
185
180
  from: from,
186
181
  parent_call_sid: parent_call_sid,
187
182
  status: status,
188
- start_time_before: start_time_before,
189
183
  start_time: start_time,
190
- start_time_after: start_time_after,
191
- end_time_before: end_time_before,
192
184
  end_time: end_time,
193
- end_time_after: end_time_after,
194
185
  page_size: limits[:page_size],
195
186
  )
196
-
187
+
197
188
  @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
198
189
  end
199
-
190
+
200
191
  ##
201
192
  # When passed a block, yields CallInstance records from the API.
202
193
  # This operation lazily loads records as efficiently as possible until the limit
@@ -206,12 +197,8 @@ module Twilio
206
197
  # @param [String] parent_call_sid Only show calls spawned by the call with this
207
198
  # Sid
208
199
  # @param [feedback_summary.Status] status Only show calls currently in this status
209
- # @param [Time] start_time_before StartTime to filter on
210
- # @param [Time] start_time StartTime to filter on
211
- # @param [Time] start_time_after: StartTime to filter on
212
- # @param [Time] end_time_before EndTime to filter on
213
- # @param [Time] end_time EndTime to filter on
214
- # @param [Time] end_time_after: EndTime to filter on
200
+ # @param [Time] start_time Only show calls that started on this date
201
+ # @param [Time] end_time Only show call that ended on this date
215
202
  # @param [Integer] limit Upper limit for the number of records to return. stream()
216
203
  # guarantees to never return more than limit. Default is no limit
217
204
  # @param [Integer] page_size Number of records to fetch per request, when not set will use
@@ -220,16 +207,16 @@ module Twilio
220
207
  # limit with the most efficient page size, i.e. min(limit, 1000)
221
208
  def each
222
209
  limits = @version.read_limits
223
-
210
+
224
211
  page = self.page(
225
212
  page_size: limits[:page_size],
226
213
  )
227
-
214
+
228
215
  @version.stream(page,
229
216
  limit: limits[:limit],
230
217
  page_limit: limits[:page_limit]).each {|x| yield x}
231
218
  end
232
-
219
+
233
220
  ##
234
221
  # Retrieve a single page of CallInstance records from the API.
235
222
  # Request is executed immediately.
@@ -238,28 +225,20 @@ module Twilio
238
225
  # @param [String] parent_call_sid Only show calls spawned by the call with this
239
226
  # Sid
240
227
  # @param [feedback_summary.Status] status Only show calls currently in this status
241
- # @param [Time] start_time_before StartTime to filter on
242
- # @param [Time] start_time StartTime to filter on
243
- # @param [Time] start_time_after: StartTime to filter on
244
- # @param [Time] end_time_before EndTime to filter on
245
- # @param [Time] end_time EndTime to filter on
246
- # @param [Time] end_time_after: EndTime to filter on
228
+ # @param [Time] start_time Only show calls that started on this date
229
+ # @param [Time] end_time Only show call that ended on this date
247
230
  # @param [String] page_token PageToken provided by the API
248
231
  # @param [Integer] page_number Page Number, this value is simply for client state
249
232
  # @param [Integer] page_size Number of records to return, defaults to 50
250
233
  # @return [Page] Page of CallInstance
251
- def page(to: nil, from: nil, parent_call_sid: nil, status: nil, start_time_before: nil, start_time: nil, start_time_after: nil, end_time_before: nil, end_time: nil, end_time_after: nil, page_token: nil, page_number: nil, page_size: nil)
234
+ def page(to: nil, from: nil, parent_call_sid: nil, status: nil, start_time: nil, end_time: nil, page_token: nil, page_number: nil, page_size: nil)
252
235
  params = {
253
236
  'To' => to,
254
237
  'From' => from,
255
238
  'ParentCallSid' => parent_call_sid,
256
239
  'Status' => status,
257
- 'StartTime<' => Twilio.serialize_iso8601(start_time_before),
258
240
  'StartTime' => Twilio.serialize_iso8601(start_time),
259
- 'StartTime>' => Twilio.serialize_iso8601(start_time_after),
260
- 'EndTime<' => Twilio.serialize_iso8601(end_time_before),
261
241
  'EndTime' => Twilio.serialize_iso8601(end_time),
262
- 'EndTime>' => Twilio.serialize_iso8601(end_time_after),
263
242
  'PageToken' => page_token,
264
243
  'Page' => page_number,
265
244
  'PageSize' => page_size,
@@ -271,7 +250,7 @@ module Twilio
271
250
  )
272
251
  return CallPage.new(@version, response, @solution)
273
252
  end
274
-
253
+
275
254
  ##
276
255
  # Access the feedback_summaries
277
256
  # @param [String] sid The sid
@@ -284,20 +263,20 @@ module Twilio
284
263
  sid,
285
264
  )
286
265
  end
287
-
266
+
288
267
  @feedback_summaries ||= FeedbackSummaryList.new(
289
268
  @version,
290
269
  account_sid: @solution[:account_sid],
291
270
  )
292
271
  end
293
-
272
+
294
273
  ##
295
274
  # Provide a user friendly representation
296
275
  def to_s
297
276
  '#<Twilio.Api.V2010.CallList>'
298
277
  end
299
278
  end
300
-
279
+
301
280
  class CallPage < Page
302
281
  ##
303
282
  # Initialize the CallPage
@@ -309,11 +288,11 @@ module Twilio
309
288
  # @return [CallPage] CallPage
310
289
  def initialize(version, response, solution)
311
290
  super(version, response)
312
-
291
+
313
292
  # Path Solution
314
293
  @solution = solution
315
294
  end
316
-
295
+
317
296
  ##
318
297
  # Build an instance of CallInstance
319
298
  # @param [Hash] payload Payload response from the API
@@ -325,14 +304,14 @@ module Twilio
325
304
  account_sid: @solution[:account_sid],
326
305
  )
327
306
  end
328
-
307
+
329
308
  ##
330
309
  # Provide a user friendly representation
331
310
  def to_s
332
311
  '<Twilio.Api.V2010.CallPage>'
333
312
  end
334
313
  end
335
-
314
+
336
315
  class CallContext < InstanceContext
337
316
  ##
338
317
  # Initialize the CallContext
@@ -342,39 +321,39 @@ module Twilio
342
321
  # @return [CallContext] CallContext
343
322
  def initialize(version, account_sid, sid)
344
323
  super(version)
345
-
324
+
346
325
  # Path Solution
347
326
  @solution = {
348
327
  account_sid: account_sid,
349
328
  sid: sid,
350
329
  }
351
330
  @uri = "/Accounts/#{@solution[:account_sid]}/Calls/#{@solution[:sid]}.json"
352
-
331
+
353
332
  # Dependents
354
333
  @recordings = nil
355
334
  @notifications = nil
356
335
  @feedback = nil
357
336
  end
358
-
337
+
359
338
  ##
360
339
  # Deletes the CallInstance
361
340
  # @return [Boolean] true if delete succeeds, true otherwise
362
341
  def delete
363
342
  return @version.delete('delete', @uri)
364
343
  end
365
-
344
+
366
345
  ##
367
346
  # Fetch a CallInstance
368
347
  # @return [CallInstance] Fetched CallInstance
369
348
  def fetch
370
349
  params = {}
371
-
350
+
372
351
  payload = @version.fetch(
373
352
  'GET',
374
353
  @uri,
375
354
  params,
376
355
  )
377
-
356
+
378
357
  return CallInstance.new(
379
358
  @version,
380
359
  payload,
@@ -382,17 +361,17 @@ module Twilio
382
361
  sid: @solution[:sid],
383
362
  )
384
363
  end
385
-
364
+
386
365
  ##
387
366
  # Update the CallInstance
388
367
  # @param [String] url A valid URL that returns TwiML. Twilio will immediately
389
368
  # redirect the call to the new TwiML upon execution.
390
369
  # @param [String] method The HTTP method Twilio should use when requesting the
391
370
  # URL. Defaults to `POST`.
392
- # @param [feedback_summary.Status] status Either `canceled` or `completed`.
393
- # Specifying `canceled` will attempt to hangup calls that are queued or ringing
394
- # but not affect calls already in progress. Specifying `completed` will attempt to
395
- # hang up a call even if it's already in progress.
371
+ # @param [call.UpdateStatus] status Either `canceled` or `completed`. Specifying
372
+ # `canceled` will attempt to hangup calls that are queued or ringing but not
373
+ # affect calls already in progress. Specifying `completed` will attempt to hang up
374
+ # a call even if it's already in progress.
396
375
  # @param [String] fallback_url A URL that Twilio will request if an error occurs
397
376
  # requesting or executing the TwiML at `Url`.
398
377
  # @param [String] fallback_method The HTTP method that Twilio should use to
@@ -412,13 +391,13 @@ module Twilio
412
391
  'StatusCallback' => status_callback,
413
392
  'StatusCallbackMethod' => status_callback_method,
414
393
  }
415
-
394
+
416
395
  payload = @version.update(
417
396
  'POST',
418
397
  @uri,
419
398
  data: data,
420
399
  )
421
-
400
+
422
401
  return CallInstance.new(
423
402
  @version,
424
403
  payload,
@@ -426,7 +405,7 @@ module Twilio
426
405
  sid: @solution[:sid],
427
406
  )
428
407
  end
429
-
408
+
430
409
  ##
431
410
  # Access the recordings
432
411
  # @return [RecordingList] RecordingList
@@ -439,7 +418,7 @@ module Twilio
439
418
  sid,
440
419
  )
441
420
  end
442
-
421
+
443
422
  unless @recordings
444
423
  @recordings = RecordingList.new(
445
424
  @version,
@@ -447,10 +426,10 @@ module Twilio
447
426
  call_sid: @solution[:sid],
448
427
  )
449
428
  end
450
-
429
+
451
430
  @recordings
452
431
  end
453
-
432
+
454
433
  ##
455
434
  # Access the notifications
456
435
  # @return [NotificationList] NotificationList
@@ -463,7 +442,7 @@ module Twilio
463
442
  sid,
464
443
  )
465
444
  end
466
-
445
+
467
446
  unless @notifications
468
447
  @notifications = NotificationList.new(
469
448
  @version,
@@ -471,10 +450,10 @@ module Twilio
471
450
  call_sid: @solution[:sid],
472
451
  )
473
452
  end
474
-
453
+
475
454
  @notifications
476
455
  end
477
-
456
+
478
457
  ##
479
458
  # Access the feedback
480
459
  # @return [FeedbackList] FeedbackList
@@ -485,7 +464,7 @@ module Twilio
485
464
  @solution[:sid],
486
465
  )
487
466
  end
488
-
467
+
489
468
  ##
490
469
  # Provide a user friendly representation
491
470
  def to_s
@@ -493,7 +472,7 @@ module Twilio
493
472
  "#<Twilio.Api.V2010.CallContext #{context}>"
494
473
  end
495
474
  end
496
-
475
+
497
476
  class CallInstance < InstanceResource
498
477
  ##
499
478
  # Initialize the CallInstance
@@ -505,7 +484,7 @@ module Twilio
505
484
  # @return [CallInstance] CallInstance
506
485
  def initialize(version, payload, account_sid: nil, sid: nil)
507
486
  super(version)
508
-
487
+
509
488
  # Marshaled Properties
510
489
  @properties = {
511
490
  'account_sid' => payload['account_sid'],
@@ -534,7 +513,7 @@ module Twilio
534
513
  'to_formatted' => payload['to_formatted'],
535
514
  'uri' => payload['uri'],
536
515
  }
537
-
516
+
538
517
  # Context
539
518
  @instance_context = nil
540
519
  @params = {
@@ -542,7 +521,7 @@ module Twilio
542
521
  'sid' => sid || @properties['sid'],
543
522
  }
544
523
  end
545
-
524
+
546
525
  ##
547
526
  # Generate an instance context for the instance, the context is capable of
548
527
  # performing various actions. All instance actions are proxied to the context
@@ -558,131 +537,131 @@ module Twilio
558
537
  end
559
538
  @instance_context
560
539
  end
561
-
540
+
562
541
  def account_sid
563
542
  @properties['account_sid']
564
543
  end
565
-
544
+
566
545
  def annotation
567
546
  @properties['annotation']
568
547
  end
569
-
548
+
570
549
  def answered_by
571
550
  @properties['answered_by']
572
551
  end
573
-
552
+
574
553
  def api_version
575
554
  @properties['api_version']
576
555
  end
577
-
556
+
578
557
  def caller_name
579
558
  @properties['caller_name']
580
559
  end
581
-
560
+
582
561
  def date_created
583
562
  @properties['date_created']
584
563
  end
585
-
564
+
586
565
  def date_updated
587
566
  @properties['date_updated']
588
567
  end
589
-
568
+
590
569
  def direction
591
570
  @properties['direction']
592
571
  end
593
-
572
+
594
573
  def duration
595
574
  @properties['duration']
596
575
  end
597
-
576
+
598
577
  def end_time
599
578
  @properties['end_time']
600
579
  end
601
-
580
+
602
581
  def forwarded_from
603
582
  @properties['forwarded_from']
604
583
  end
605
-
584
+
606
585
  def from
607
586
  @properties['from']
608
587
  end
609
-
588
+
610
589
  def from_formatted
611
590
  @properties['from_formatted']
612
591
  end
613
-
592
+
614
593
  def group_sid
615
594
  @properties['group_sid']
616
595
  end
617
-
596
+
618
597
  def parent_call_sid
619
598
  @properties['parent_call_sid']
620
599
  end
621
-
600
+
622
601
  def phone_number_sid
623
602
  @properties['phone_number_sid']
624
603
  end
625
-
604
+
626
605
  def price
627
606
  @properties['price']
628
607
  end
629
-
608
+
630
609
  def price_unit
631
610
  @properties['price_unit']
632
611
  end
633
-
612
+
634
613
  def sid
635
614
  @properties['sid']
636
615
  end
637
-
616
+
638
617
  def start_time
639
618
  @properties['start_time']
640
619
  end
641
-
620
+
642
621
  def status
643
622
  @properties['status']
644
623
  end
645
-
624
+
646
625
  def subresource_uris
647
626
  @properties['subresource_uris']
648
627
  end
649
-
628
+
650
629
  def to
651
630
  @properties['to']
652
631
  end
653
-
632
+
654
633
  def to_formatted
655
634
  @properties['to_formatted']
656
635
  end
657
-
636
+
658
637
  def uri
659
638
  @properties['uri']
660
639
  end
661
-
640
+
662
641
  ##
663
642
  # Deletes the CallInstance
664
643
  # @return [Boolean] true if delete succeeds, true otherwise
665
644
  def delete
666
645
  context.delete
667
646
  end
668
-
647
+
669
648
  ##
670
649
  # Fetch a CallInstance
671
650
  # @return [CallInstance] Fetched CallInstance
672
651
  def fetch
673
652
  context.fetch
674
653
  end
675
-
654
+
676
655
  ##
677
656
  # Update the CallInstance
678
657
  # @param [String] url A valid URL that returns TwiML. Twilio will immediately
679
658
  # redirect the call to the new TwiML upon execution.
680
659
  # @param [String] method The HTTP method Twilio should use when requesting the
681
660
  # URL. Defaults to `POST`.
682
- # @param [feedback_summary.Status] status Either `canceled` or `completed`.
683
- # Specifying `canceled` will attempt to hangup calls that are queued or ringing
684
- # but not affect calls already in progress. Specifying `completed` will attempt to
685
- # hang up a call even if it's already in progress.
661
+ # @param [call.UpdateStatus] status Either `canceled` or `completed`. Specifying
662
+ # `canceled` will attempt to hangup calls that are queued or ringing but not
663
+ # affect calls already in progress. Specifying `completed` will attempt to hang up
664
+ # a call even if it's already in progress.
686
665
  # @param [String] fallback_url A URL that Twilio will request if an error occurs
687
666
  # requesting or executing the TwiML at `Url`.
688
667
  # @param [String] fallback_method The HTTP method that Twilio should use to
@@ -703,28 +682,28 @@ module Twilio
703
682
  status_callback_method: status_callback_method,
704
683
  )
705
684
  end
706
-
685
+
707
686
  ##
708
687
  # Access the recordings
709
688
  # @return [recordings] recordings
710
689
  def recordings
711
690
  context.recordings
712
691
  end
713
-
692
+
714
693
  ##
715
694
  # Access the notifications
716
695
  # @return [notifications] notifications
717
696
  def notifications
718
697
  context.notifications
719
698
  end
720
-
699
+
721
700
  ##
722
701
  # Access the feedback
723
702
  # @return [feedback] feedback
724
703
  def feedback
725
704
  context.feedback
726
705
  end
727
-
706
+
728
707
  ##
729
708
  # Provide a user friendly representation
730
709
  def to_s