twilio-ruby 5.0.0.rc26 → 5.0.0

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 (328) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +21 -0
  3. data/.rubocop_todo.yml +187 -0
  4. data/.travis.yml +13 -0
  5. data/CHANGES.md +4 -0
  6. data/Gemfile +2 -2
  7. data/Makefile +8 -1
  8. data/Rakefile +3 -7
  9. data/examples/examples.rb +12 -10
  10. data/examples/{print-call-log.rb → print_call_log.rb} +4 -4
  11. data/lib/rack/twilio_webhook_authentication.rb +2 -3
  12. data/lib/twilio-ruby/framework/domain.rb +2 -6
  13. data/lib/twilio-ruby/framework/error.rb +0 -1
  14. data/lib/twilio-ruby/framework/helper.rb +1 -1
  15. data/lib/twilio-ruby/framework/page.rb +23 -25
  16. data/lib/twilio-ruby/framework/resource.rb +2 -2
  17. data/lib/twilio-ruby/framework/serialize.rb +5 -12
  18. data/lib/twilio-ruby/framework/twilio_response.rb +1 -1
  19. data/lib/twilio-ruby/framework/values.rb +2 -2
  20. data/lib/twilio-ruby/framework/version.rb +19 -37
  21. data/lib/twilio-ruby/http/http_client.rb +5 -6
  22. data/lib/twilio-ruby/jwt/access_token.rb +27 -41
  23. data/lib/twilio-ruby/jwt/client_capability.rb +11 -16
  24. data/lib/twilio-ruby/jwt/jwt.rb +7 -13
  25. data/lib/twilio-ruby/jwt/task_router.rb +40 -38
  26. data/lib/twilio-ruby/rest/accounts.rb +2 -0
  27. data/lib/twilio-ruby/rest/accounts/v1.rb +2 -0
  28. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +2 -2
  29. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +12 -7
  30. data/lib/twilio-ruby/rest/api.rb +96 -0
  31. data/lib/twilio-ruby/rest/api/v2010.rb +5 -0
  32. data/lib/twilio-ruby/rest/api/v2010/account.rb +66 -56
  33. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +30 -13
  34. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +22 -8
  35. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +40 -11
  36. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +20 -9
  37. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +16 -15
  38. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +26 -28
  39. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +26 -28
  40. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +26 -28
  41. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +64 -34
  42. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +12 -4
  43. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +28 -3
  44. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +37 -16
  45. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +25 -15
  46. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +28 -27
  47. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +28 -19
  48. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +22 -9
  49. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +62 -58
  50. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +52 -12
  51. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +52 -12
  52. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +52 -12
  53. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +8 -9
  54. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +47 -20
  55. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +12 -2
  56. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +17 -17
  57. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +10 -2
  58. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +10 -2
  59. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +37 -16
  60. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +14 -13
  61. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +20 -10
  62. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +10 -10
  63. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +37 -21
  64. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +22 -13
  65. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +22 -13
  66. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +26 -9
  67. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +24 -13
  68. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +8 -9
  69. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +8 -10
  70. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +16 -11
  71. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +14 -9
  72. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +36 -13
  73. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +14 -10
  74. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +14 -10
  75. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +16 -11
  76. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +16 -9
  77. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +14 -2
  78. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +26 -9
  79. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +4 -6
  80. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +44 -33
  81. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +28 -11
  82. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +28 -11
  83. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +28 -11
  84. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +28 -11
  85. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +28 -11
  86. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +28 -11
  87. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +28 -11
  88. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +28 -11
  89. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +32 -15
  90. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +10 -1
  91. data/lib/twilio-ruby/rest/chat.rb +8 -0
  92. data/lib/twilio-ruby/rest/chat/v1.rb +8 -0
  93. data/lib/twilio-ruby/rest/chat/v1/credential.rb +16 -7
  94. data/lib/twilio-ruby/rest/chat/v1/service.rb +48 -13
  95. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +34 -15
  96. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +20 -10
  97. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +22 -10
  98. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +26 -10
  99. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +18 -8
  100. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +30 -10
  101. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +16 -8
  102. data/lib/twilio-ruby/rest/chat/v2.rb +8 -0
  103. data/lib/twilio-ruby/rest/chat/v2/credential.rb +16 -7
  104. data/lib/twilio-ruby/rest/chat/v2/service.rb +46 -13
  105. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +34 -15
  106. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +20 -10
  107. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +22 -10
  108. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +26 -10
  109. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +18 -8
  110. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +30 -10
  111. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +16 -8
  112. data/lib/twilio-ruby/rest/client.rb +94 -45
  113. data/lib/twilio-ruby/rest/ip_messaging.rb +8 -0
  114. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +8 -0
  115. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +16 -7
  116. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +48 -13
  117. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +34 -15
  118. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +20 -10
  119. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +22 -10
  120. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +26 -10
  121. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +18 -8
  122. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +30 -10
  123. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +16 -8
  124. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +8 -0
  125. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +16 -7
  126. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +46 -13
  127. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +34 -15
  128. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +20 -10
  129. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +22 -10
  130. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +26 -10
  131. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +18 -8
  132. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +30 -10
  133. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +16 -8
  134. data/lib/twilio-ruby/rest/lookups.rb +4 -0
  135. data/lib/twilio-ruby/rest/lookups/v1.rb +9 -5
  136. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +14 -1
  137. data/lib/twilio-ruby/rest/monitor.rb +8 -0
  138. data/lib/twilio-ruby/rest/monitor/v1.rb +8 -0
  139. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +34 -10
  140. data/lib/twilio-ruby/rest/monitor/v1/event.rb +28 -13
  141. data/lib/twilio-ruby/rest/pricing.rb +6 -0
  142. data/lib/twilio-ruby/rest/pricing/v1.rb +6 -0
  143. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +8 -2
  144. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +12 -7
  145. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +8 -2
  146. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +10 -7
  147. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +10 -4
  148. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +12 -7
  149. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +14 -1
  150. data/lib/twilio-ruby/rest/taskrouter.rb +4 -0
  151. data/lib/twilio-ruby/rest/taskrouter/v1.rb +4 -0
  152. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +46 -24
  153. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +16 -10
  154. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +30 -17
  155. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +42 -19
  156. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +22 -10
  157. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +16 -8
  158. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +34 -15
  159. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +12 -3
  160. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +10 -11
  161. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +34 -23
  162. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +22 -10
  163. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +28 -9
  164. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +10 -3
  165. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +10 -2
  166. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +28 -11
  167. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +12 -3
  168. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +10 -2
  169. data/lib/twilio-ruby/rest/trunking.rb +4 -0
  170. data/lib/twilio-ruby/rest/trunking/v1.rb +4 -0
  171. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +36 -15
  172. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +14 -8
  173. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +14 -8
  174. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +22 -8
  175. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +52 -8
  176. data/lib/twilio-ruby/rest/video.rb +8 -0
  177. data/lib/twilio-ruby/rest/video/v1.rb +8 -0
  178. data/lib/twilio-ruby/rest/video/v1/recording.rb +26 -12
  179. data/lib/twilio-ruby/rest/video/v1/room.rb +34 -13
  180. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +28 -12
  181. data/lib/twilio-ruby/security/request_validator.rb +1 -2
  182. data/lib/twilio-ruby/twiml/messaging_response.rb +7 -19
  183. data/lib/twilio-ruby/twiml/twiml.rb +8 -14
  184. data/lib/twilio-ruby/twiml/voice_response.rb +157 -169
  185. data/lib/twilio-ruby/util.rb +1 -1
  186. data/lib/twilio-ruby/version.rb +1 -1
  187. data/spec/framework/serialize_spec.rb +17 -30
  188. data/spec/holodeck/holodeck.rb +6 -6
  189. data/spec/jwt/access_token_spec.rb +0 -6
  190. data/spec/jwt/client_capability_spec.rb +3 -3
  191. data/spec/jwt/task_router_spec.rb +16 -21
  192. data/spec/rack/twilio_webhook_authentication_spec.rb +12 -16
  193. data/spec/spec_helper.rb +2 -2
  194. data/spec/support/fakeweb.rb +1 -1
  195. data/spec/twiml/voice_response_spec.rb +33 -20
  196. data/twilio-ruby.gemspec +7 -3
  197. metadata +21 -193
  198. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +0 -420
  199. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +0 -345
  200. data/lib/twilio-ruby/rest/fax.rb +0 -40
  201. data/lib/twilio-ruby/rest/fax/v1.rb +0 -37
  202. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -520
  203. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -321
  204. data/lib/twilio-ruby/rest/messaging.rb +0 -40
  205. data/lib/twilio-ruby/rest/messaging/v1.rb +0 -37
  206. data/lib/twilio-ruby/rest/messaging/v1/service.rb +0 -604
  207. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +0 -344
  208. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +0 -349
  209. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +0 -349
  210. data/lib/twilio-ruby/rest/notify.rb +0 -44
  211. data/lib/twilio-ruby/rest/notify/v1.rb +0 -48
  212. data/lib/twilio-ruby/rest/notify/v1/credential.rb +0 -394
  213. data/lib/twilio-ruby/rest/notify/v1/service.rb +0 -611
  214. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +0 -414
  215. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +0 -249
  216. data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +0 -219
  217. data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -437
  218. data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -247
  219. data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -418
  220. data/lib/twilio-ruby/rest/preview.rb +0 -107
  221. data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -48
  222. data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -198
  223. data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -209
  224. data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -232
  225. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +0 -37
  226. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +0 -539
  227. data/lib/twilio-ruby/rest/preview/marketplace.rb +0 -48
  228. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +0 -326
  229. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +0 -297
  230. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +0 -427
  231. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +0 -335
  232. data/lib/twilio-ruby/rest/preview/proxy.rb +0 -37
  233. data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -489
  234. data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +0 -349
  235. data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -525
  236. data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -406
  237. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +0 -495
  238. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +0 -422
  239. data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +0 -349
  240. data/lib/twilio-ruby/rest/preview/sync.rb +0 -37
  241. data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -491
  242. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -431
  243. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -390
  244. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -426
  245. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -422
  246. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -390
  247. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -426
  248. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -424
  249. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -390
  250. data/lib/twilio-ruby/rest/preview/wireless.rb +0 -59
  251. data/lib/twilio-ruby/rest/preview/wireless/command.rb +0 -371
  252. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +0 -414
  253. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +0 -512
  254. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +0 -220
  255. data/lib/twilio-ruby/rest/sync.rb +0 -40
  256. data/lib/twilio-ruby/rest/sync/v1.rb +0 -37
  257. data/lib/twilio-ruby/rest/sync/v1/service.rb +0 -491
  258. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +0 -431
  259. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +0 -390
  260. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +0 -426
  261. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +0 -422
  262. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +0 -390
  263. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +0 -426
  264. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +0 -424
  265. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +0 -390
  266. data/lib/twilio-ruby/rest/wireless.rb +0 -48
  267. data/lib/twilio-ruby/rest/wireless/v1.rb +0 -59
  268. data/lib/twilio-ruby/rest/wireless/v1/command.rb +0 -357
  269. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +0 -427
  270. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +0 -516
  271. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +0 -235
  272. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -135
  273. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
  274. data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -126
  275. data/spec/integration/fax/v1/fax_spec.rb +0 -272
  276. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
  277. data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
  278. data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
  279. data/spec/integration/messaging/v1/service_spec.rb +0 -263
  280. data/spec/integration/notify/v1/credential_spec.rb +0 -223
  281. data/spec/integration/notify/v1/service/binding_spec.rb +0 -227
  282. data/spec/integration/notify/v1/service/notification_spec.rb +0 -97
  283. data/spec/integration/notify/v1/service/segment_spec.rb +0 -84
  284. data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -118
  285. data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -269
  286. data/spec/integration/notify/v1/service/user_spec.rb +0 -213
  287. data/spec/integration/notify/v1/service_spec.rb +0 -280
  288. data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -56
  289. data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
  290. data/spec/integration/preview/bulk_exports/export_spec.rb +0 -43
  291. data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -276
  292. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -121
  293. data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -142
  294. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
  295. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -252
  296. data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -173
  297. data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -104
  298. data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -164
  299. data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -226
  300. data/spec/integration/preview/proxy/service/session_spec.rb +0 -216
  301. data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -173
  302. data/spec/integration/preview/proxy/service_spec.rb +0 -200
  303. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -206
  304. data/spec/integration/preview/sync/service/document_spec.rb +0 -254
  305. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -256
  306. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -206
  307. data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -207
  308. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -257
  309. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -206
  310. data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -207
  311. data/spec/integration/preview/sync/service_spec.rb +0 -244
  312. data/spec/integration/preview/wireless/command_spec.rb +0 -169
  313. data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -260
  314. data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -49
  315. data/spec/integration/preview/wireless/sim_spec.rb +0 -208
  316. data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -206
  317. data/spec/integration/sync/v1/service/document_spec.rb +0 -254
  318. data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -256
  319. data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -206
  320. data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -207
  321. data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
  322. data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -206
  323. data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -207
  324. data/spec/integration/sync/v1/service_spec.rb +0 -244
  325. data/spec/integration/wireless/v1/command_spec.rb +0 -166
  326. data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -268
  327. data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -65
  328. data/spec/integration/wireless/v1/sim_spec.rb +0 -208
@@ -1,247 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Notify < Domain
10
- class V1 < Version
11
- class ServiceContext < InstanceContext
12
- class UserContext < InstanceContext
13
- class SegmentMembershipList < ListResource
14
- ##
15
- # Initialize the SegmentMembershipList
16
- # @param [Version] version Version that contains the resource
17
- # @param [String] service_sid The service_sid
18
- # @param [String] identity The identity
19
- # @return [SegmentMembershipList] SegmentMembershipList
20
- def initialize(version, service_sid: nil, identity: nil)
21
- super(version)
22
-
23
- # Path Solution
24
- @solution = {
25
- service_sid: service_sid,
26
- identity: identity
27
- }
28
- @uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:identity]}/SegmentMemberships"
29
- end
30
-
31
- ##
32
- # Retrieve a single page of SegmentMembershipInstance records from the API.
33
- # Request is executed immediately.
34
- # @param [String] segment The segment
35
- # @return [SegmentMembershipInstance] Newly created SegmentMembershipInstance
36
- def create(segment: nil)
37
- data = Twilio::Values.of({
38
- 'Segment' => segment,
39
- })
40
-
41
- payload = @version.create(
42
- 'POST',
43
- @uri,
44
- data: data
45
- )
46
-
47
- SegmentMembershipInstance.new(
48
- @version,
49
- payload,
50
- service_sid: @solution[:service_sid],
51
- identity: @solution[:identity],
52
- )
53
- end
54
-
55
- ##
56
- # Provide a user friendly representation
57
- def to_s
58
- '#<Twilio.Notify.V1.SegmentMembershipList>'
59
- end
60
- end
61
-
62
- class SegmentMembershipPage < Page
63
- ##
64
- # Initialize the SegmentMembershipPage
65
- # @param [Version] version Version that contains the resource
66
- # @param [Response] response Response from the API
67
- # @param [Hash] solution Path solution for the resource
68
- # @param [String] service_sid The service_sid
69
- # @param [String] identity The identity
70
- # @return [SegmentMembershipPage] SegmentMembershipPage
71
- def initialize(version, response, solution)
72
- super(version, response)
73
-
74
- # Path Solution
75
- @solution = solution
76
- end
77
-
78
- ##
79
- # Build an instance of SegmentMembershipInstance
80
- # @param [Hash] payload Payload response from the API
81
- # @return [SegmentMembershipInstance] SegmentMembershipInstance
82
- def get_instance(payload)
83
- SegmentMembershipInstance.new(
84
- @version,
85
- payload,
86
- service_sid: @solution[:service_sid],
87
- identity: @solution[:identity],
88
- )
89
- end
90
-
91
- ##
92
- # Provide a user friendly representation
93
- def to_s
94
- '<Twilio.Notify.V1.SegmentMembershipPage>'
95
- end
96
- end
97
-
98
- class SegmentMembershipContext < InstanceContext
99
- ##
100
- # Initialize the SegmentMembershipContext
101
- # @param [Version] version Version that contains the resource
102
- # @param [String] service_sid The service_sid
103
- # @param [String] identity The identity
104
- # @param [String] segment The segment
105
- # @return [SegmentMembershipContext] SegmentMembershipContext
106
- def initialize(version, service_sid, identity, segment)
107
- super(version)
108
-
109
- # Path Solution
110
- @solution = {
111
- service_sid: service_sid,
112
- identity: identity,
113
- segment: segment,
114
- }
115
- @uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:identity]}/SegmentMemberships/#{@solution[:segment]}"
116
- end
117
-
118
- ##
119
- # Deletes the SegmentMembershipInstance
120
- # @return [Boolean] true if delete succeeds, true otherwise
121
- def delete
122
- @version.delete('delete', @uri)
123
- end
124
-
125
- ##
126
- # Fetch a SegmentMembershipInstance
127
- # @return [SegmentMembershipInstance] Fetched SegmentMembershipInstance
128
- def fetch
129
- params = Twilio::Values.of({})
130
-
131
- payload = @version.fetch(
132
- 'GET',
133
- @uri,
134
- params,
135
- )
136
-
137
- SegmentMembershipInstance.new(
138
- @version,
139
- payload,
140
- service_sid: @solution[:service_sid],
141
- identity: @solution[:identity],
142
- segment: @solution[:segment],
143
- )
144
- end
145
-
146
- ##
147
- # Provide a user friendly representation
148
- def to_s
149
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
150
- "#<Twilio.Notify.V1.SegmentMembershipContext #{context}>"
151
- end
152
- end
153
-
154
- class SegmentMembershipInstance < InstanceResource
155
- ##
156
- # Initialize the SegmentMembershipInstance
157
- # @param [Version] version Version that contains the resource
158
- # @param [Hash] payload payload that contains response from Twilio
159
- # @param [String] service_sid The service_sid
160
- # @param [String] identity The identity
161
- # @param [String] segment The segment
162
- # @return [SegmentMembershipInstance] SegmentMembershipInstance
163
- def initialize(version, payload, service_sid: nil, identity: nil, segment: nil)
164
- super(version)
165
-
166
- # Marshaled Properties
167
- @properties = {
168
- 'account_sid' => payload['account_sid'],
169
- 'service_sid' => payload['service_sid'],
170
- 'identity' => payload['identity'],
171
- 'segment' => payload['segment'],
172
- 'url' => payload['url'],
173
- }
174
-
175
- # Context
176
- @instance_context = nil
177
- @params = {
178
- 'service_sid' => service_sid,
179
- 'identity' => identity,
180
- 'segment' => segment || @properties['segment'],
181
- }
182
- end
183
-
184
- ##
185
- # Generate an instance context for the instance, the context is capable of
186
- # performing various actions. All instance actions are proxied to the context
187
- # @param [Version] version Version that contains the resource
188
- # @return [SegmentMembershipContext] SegmentMembershipContext for this SegmentMembershipInstance
189
- def context
190
- unless @instance_context
191
- @instance_context = SegmentMembershipContext.new(
192
- @version,
193
- @params['service_sid'],
194
- @params['identity'],
195
- @params['segment'],
196
- )
197
- end
198
- @instance_context
199
- end
200
-
201
- def account_sid
202
- @properties['account_sid']
203
- end
204
-
205
- def service_sid
206
- @properties['service_sid']
207
- end
208
-
209
- def identity
210
- @properties['identity']
211
- end
212
-
213
- def segment
214
- @properties['segment']
215
- end
216
-
217
- def url
218
- @properties['url']
219
- end
220
-
221
- ##
222
- # Deletes the SegmentMembershipInstance
223
- # @return [Boolean] true if delete succeeds, true otherwise
224
- def delete
225
- context.delete
226
- end
227
-
228
- ##
229
- # Fetch a SegmentMembershipInstance
230
- # @return [SegmentMembershipInstance] Fetched SegmentMembershipInstance
231
- def fetch
232
- context.fetch
233
- end
234
-
235
- ##
236
- # Provide a user friendly representation
237
- def to_s
238
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
239
- "<Twilio.Notify.V1.SegmentMembershipInstance #{values}>"
240
- end
241
- end
242
- end
243
- end
244
- end
245
- end
246
- end
247
- end
@@ -1,418 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Notify < Domain
10
- class V1 < Version
11
- class ServiceContext < InstanceContext
12
- class UserContext < InstanceContext
13
- class UserBindingList < ListResource
14
- ##
15
- # Initialize the UserBindingList
16
- # @param [Version] version Version that contains the resource
17
- # @param [String] service_sid The service_sid
18
- # @param [String] identity The identity
19
- # @return [UserBindingList] UserBindingList
20
- def initialize(version, service_sid: nil, identity: nil)
21
- super(version)
22
-
23
- # Path Solution
24
- @solution = {
25
- service_sid: service_sid,
26
- identity: identity
27
- }
28
- @uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:identity]}/Bindings"
29
- end
30
-
31
- ##
32
- # Retrieve a single page of UserBindingInstance records from the API.
33
- # Request is executed immediately.
34
- # @param [user_binding.BindingType] binding_type The binding_type
35
- # @param [String] address The address
36
- # @param [String] tag The tag
37
- # @param [String] notification_protocol_version The notification_protocol_version
38
- # @param [String] credential_sid The credential_sid
39
- # @param [String] endpoint The endpoint
40
- # @return [UserBindingInstance] Newly created UserBindingInstance
41
- def create(binding_type: nil, address: nil, tag: :unset, notification_protocol_version: :unset, credential_sid: :unset, endpoint: :unset)
42
- data = Twilio::Values.of({
43
- 'BindingType' => binding_type,
44
- 'Address' => address,
45
- 'Tag' => tag,
46
- 'NotificationProtocolVersion' => notification_protocol_version,
47
- 'CredentialSid' => credential_sid,
48
- 'Endpoint' => endpoint,
49
- })
50
-
51
- payload = @version.create(
52
- 'POST',
53
- @uri,
54
- data: data
55
- )
56
-
57
- UserBindingInstance.new(
58
- @version,
59
- payload,
60
- service_sid: @solution[:service_sid],
61
- identity: @solution[:identity],
62
- )
63
- end
64
-
65
- ##
66
- # Lists UserBindingInstance records from the API as a list.
67
- # Unlike stream(), this operation is eager and will load `limit` records into
68
- # memory before returning.
69
- # @param [Date] start_date The start_date
70
- # @param [Date] end_date The end_date
71
- # @param [String] tag The tag
72
- # @param [Integer] limit Upper limit for the number of records to return. stream()
73
- # guarantees to never return more than limit. Default is no limit
74
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
75
- # the default value of 50 records. If no page_size is defined
76
- # but a limit is defined, stream() will attempt to read the
77
- # limit with the most efficient page size, i.e. min(limit, 1000)
78
- # @return [Array] Array of up to limit results
79
- def list(start_date: :unset, end_date: :unset, tag: :unset, limit: nil, page_size: nil)
80
- self.stream(
81
- start_date: start_date,
82
- end_date: end_date,
83
- tag: tag,
84
- limit: limit,
85
- page_size: page_size
86
- ).entries
87
- end
88
-
89
- ##
90
- # Streams UserBindingInstance records from the API as an Enumerable.
91
- # This operation lazily loads records as efficiently as possible until the limit
92
- # is reached.
93
- # @param [Date] start_date The start_date
94
- # @param [Date] end_date The end_date
95
- # @param [String] tag The tag
96
- # @param [Integer] limit Upper limit for the number of records to return. stream()
97
- # guarantees to never return more than limit. Default is no limit
98
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
99
- # the default value of 50 records. If no page_size is defined
100
- # but a limit is defined, stream() will attempt to read the
101
- # limit with the most efficient page size, i.e. min(limit, 1000)
102
- # @return [Enumerable] Enumerable that will yield up to limit results
103
- def stream(start_date: :unset, end_date: :unset, tag: :unset, limit: nil, page_size: nil)
104
- limits = @version.read_limits(limit, page_size)
105
-
106
- page = self.page(
107
- start_date: start_date,
108
- end_date: end_date,
109
- tag: tag,
110
- page_size: limits[:page_size],
111
- )
112
-
113
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
114
- end
115
-
116
- ##
117
- # When passed a block, yields UserBindingInstance records from the API.
118
- # This operation lazily loads records as efficiently as possible until the limit
119
- # is reached.
120
- # @param [Date] start_date The start_date
121
- # @param [Date] end_date The end_date
122
- # @param [String] tag The tag
123
- # @param [Integer] limit Upper limit for the number of records to return. stream()
124
- # guarantees to never return more than limit. Default is no limit
125
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
126
- # the default value of 50 records. If no page_size is defined
127
- # but a limit is defined, stream() will attempt to read the
128
- # limit with the most efficient page size, i.e. min(limit, 1000)
129
- def each
130
- limits = @version.read_limits
131
-
132
- page = self.page(
133
- page_size: limits[:page_size],
134
- )
135
-
136
- @version.stream(page,
137
- limit: limits[:limit],
138
- page_limit: limits[:page_limit]).each {|x| yield x}
139
- end
140
-
141
- ##
142
- # Retrieve a single page of UserBindingInstance records from the API.
143
- # Request is executed immediately.
144
- # @param [Date] start_date The start_date
145
- # @param [Date] end_date The end_date
146
- # @param [String] tag The tag
147
- # @param [String] page_token PageToken provided by the API
148
- # @param [Integer] page_number Page Number, this value is simply for client state
149
- # @param [Integer] page_size Number of records to return, defaults to 50
150
- # @return [Page] Page of UserBindingInstance
151
- def page(start_date: :unset, end_date: :unset, tag: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
152
- params = Twilio::Values.of({
153
- 'StartDate' => Twilio.serialize_iso8601_date(start_date),
154
- 'EndDate' => Twilio.serialize_iso8601_date(end_date),
155
- 'Tag' => tag,
156
- 'PageToken' => page_token,
157
- 'Page' => page_number,
158
- 'PageSize' => page_size,
159
- })
160
- response = @version.page(
161
- 'GET',
162
- @uri,
163
- params
164
- )
165
- UserBindingPage.new(@version, response, @solution)
166
- end
167
-
168
- ##
169
- # Retrieve a single page of UserBindingInstance records from the API.
170
- # Request is executed immediately.
171
- # @param [String] target_url API-generated URL for the requested results page
172
- # @return [Page] Page of UserBindingInstance
173
- def get_page(target_url)
174
- response = @version.domain.request(
175
- 'GET',
176
- target_url
177
- )
178
- UserBindingPage.new(@version, response, @solution)
179
- end
180
-
181
- ##
182
- # Provide a user friendly representation
183
- def to_s
184
- '#<Twilio.Notify.V1.UserBindingList>'
185
- end
186
- end
187
-
188
- class UserBindingPage < Page
189
- ##
190
- # Initialize the UserBindingPage
191
- # @param [Version] version Version that contains the resource
192
- # @param [Response] response Response from the API
193
- # @param [Hash] solution Path solution for the resource
194
- # @param [String] service_sid The service_sid
195
- # @param [String] identity The identity
196
- # @return [UserBindingPage] UserBindingPage
197
- def initialize(version, response, solution)
198
- super(version, response)
199
-
200
- # Path Solution
201
- @solution = solution
202
- end
203
-
204
- ##
205
- # Build an instance of UserBindingInstance
206
- # @param [Hash] payload Payload response from the API
207
- # @return [UserBindingInstance] UserBindingInstance
208
- def get_instance(payload)
209
- UserBindingInstance.new(
210
- @version,
211
- payload,
212
- service_sid: @solution[:service_sid],
213
- identity: @solution[:identity],
214
- )
215
- end
216
-
217
- ##
218
- # Provide a user friendly representation
219
- def to_s
220
- '<Twilio.Notify.V1.UserBindingPage>'
221
- end
222
- end
223
-
224
- class UserBindingContext < InstanceContext
225
- ##
226
- # Initialize the UserBindingContext
227
- # @param [Version] version Version that contains the resource
228
- # @param [String] service_sid The service_sid
229
- # @param [String] identity The identity
230
- # @param [String] sid The sid
231
- # @return [UserBindingContext] UserBindingContext
232
- def initialize(version, service_sid, identity, sid)
233
- super(version)
234
-
235
- # Path Solution
236
- @solution = {
237
- service_sid: service_sid,
238
- identity: identity,
239
- sid: sid,
240
- }
241
- @uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:identity]}/Bindings/#{@solution[:sid]}"
242
- end
243
-
244
- ##
245
- # Fetch a UserBindingInstance
246
- # @return [UserBindingInstance] Fetched UserBindingInstance
247
- def fetch
248
- params = Twilio::Values.of({})
249
-
250
- payload = @version.fetch(
251
- 'GET',
252
- @uri,
253
- params,
254
- )
255
-
256
- UserBindingInstance.new(
257
- @version,
258
- payload,
259
- service_sid: @solution[:service_sid],
260
- identity: @solution[:identity],
261
- sid: @solution[:sid],
262
- )
263
- end
264
-
265
- ##
266
- # Deletes the UserBindingInstance
267
- # @return [Boolean] true if delete succeeds, true otherwise
268
- def delete
269
- @version.delete('delete', @uri)
270
- end
271
-
272
- ##
273
- # Provide a user friendly representation
274
- def to_s
275
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
276
- "#<Twilio.Notify.V1.UserBindingContext #{context}>"
277
- end
278
- end
279
-
280
- class UserBindingInstance < InstanceResource
281
- ##
282
- # Initialize the UserBindingInstance
283
- # @param [Version] version Version that contains the resource
284
- # @param [Hash] payload payload that contains response from Twilio
285
- # @param [String] service_sid The service_sid
286
- # @param [String] identity The identity
287
- # @param [String] sid The sid
288
- # @return [UserBindingInstance] UserBindingInstance
289
- def initialize(version, payload, service_sid: nil, identity: nil, sid: nil)
290
- super(version)
291
-
292
- # Marshaled Properties
293
- @properties = {
294
- 'sid' => payload['sid'],
295
- 'account_sid' => payload['account_sid'],
296
- 'service_sid' => payload['service_sid'],
297
- 'credential_sid' => payload['credential_sid'],
298
- 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
299
- 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
300
- 'notification_protocol_version' => payload['notification_protocol_version'],
301
- 'endpoint' => payload['endpoint'],
302
- 'identity' => payload['identity'],
303
- 'binding_type' => payload['binding_type'],
304
- 'address' => payload['address'],
305
- 'tags' => payload['tags'],
306
- 'url' => payload['url'],
307
- 'links' => payload['links'],
308
- }
309
-
310
- # Context
311
- @instance_context = nil
312
- @params = {
313
- 'service_sid' => service_sid,
314
- 'identity' => identity,
315
- 'sid' => sid || @properties['sid'],
316
- }
317
- end
318
-
319
- ##
320
- # Generate an instance context for the instance, the context is capable of
321
- # performing various actions. All instance actions are proxied to the context
322
- # @param [Version] version Version that contains the resource
323
- # @return [UserBindingContext] UserBindingContext for this UserBindingInstance
324
- def context
325
- unless @instance_context
326
- @instance_context = UserBindingContext.new(
327
- @version,
328
- @params['service_sid'],
329
- @params['identity'],
330
- @params['sid'],
331
- )
332
- end
333
- @instance_context
334
- end
335
-
336
- def sid
337
- @properties['sid']
338
- end
339
-
340
- def account_sid
341
- @properties['account_sid']
342
- end
343
-
344
- def service_sid
345
- @properties['service_sid']
346
- end
347
-
348
- def credential_sid
349
- @properties['credential_sid']
350
- end
351
-
352
- def date_created
353
- @properties['date_created']
354
- end
355
-
356
- def date_updated
357
- @properties['date_updated']
358
- end
359
-
360
- def notification_protocol_version
361
- @properties['notification_protocol_version']
362
- end
363
-
364
- def endpoint
365
- @properties['endpoint']
366
- end
367
-
368
- def identity
369
- @properties['identity']
370
- end
371
-
372
- def binding_type
373
- @properties['binding_type']
374
- end
375
-
376
- def address
377
- @properties['address']
378
- end
379
-
380
- def tags
381
- @properties['tags']
382
- end
383
-
384
- def url
385
- @properties['url']
386
- end
387
-
388
- def links
389
- @properties['links']
390
- end
391
-
392
- ##
393
- # Fetch a UserBindingInstance
394
- # @return [UserBindingInstance] Fetched UserBindingInstance
395
- def fetch
396
- context.fetch
397
- end
398
-
399
- ##
400
- # Deletes the UserBindingInstance
401
- # @return [Boolean] true if delete succeeds, true otherwise
402
- def delete
403
- context.delete
404
- end
405
-
406
- ##
407
- # Provide a user friendly representation
408
- def to_s
409
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
410
- "<Twilio.Notify.V1.UserBindingInstance #{values}>"
411
- end
412
- end
413
- end
414
- end
415
- end
416
- end
417
- end
418
- end