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.
- checksums.yaml +4 -4
- data/CHANGES.md +9 -0
- data/lib/twilio-ruby/jwt/access_token.rb +25 -0
- data/lib/twilio-ruby/rest/accounts.rb +40 -0
- data/lib/twilio-ruby/rest/accounts/v1.rb +35 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +102 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +352 -0
- data/lib/twilio-ruby/rest/api.rb +30 -34
- data/lib/twilio-ruby/rest/api/v2010.rb +28 -32
- data/lib/twilio-ruby/rest/api/v2010/account.rb +132 -150
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +71 -55
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +29 -29
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +58 -58
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +37 -37
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +45 -45
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +39 -39
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +39 -39
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +39 -39
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +102 -123
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +33 -33
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +38 -38
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +52 -52
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +42 -37
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +83 -40
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +131 -43
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +42 -42
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +172 -96
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +404 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +332 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +62 -57
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +62 -57
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +62 -57
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +37 -37
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +78 -85
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +19 -19
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +47 -57
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +18 -18
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +18 -18
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +46 -46
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +40 -40
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +50 -50
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +36 -36
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +101 -68
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +372 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +356 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +42 -42
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +43 -43
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +37 -37
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +27 -16
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +48 -48
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +43 -43
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +65 -60
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +43 -38
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +43 -38
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +48 -48
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +44 -44
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +20 -20
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +42 -42
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +13 -13
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +78 -82
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +45 -73
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +52 -52
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +18 -18
- data/lib/twilio-ruby/rest/chat.rb +16 -9
- data/lib/twilio-ruby/rest/chat/v1.rb +4 -4
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +53 -47
- data/lib/twilio-ruby/rest/chat/v1/service.rb +446 -69
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +114 -69
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +99 -44
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +76 -54
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +45 -45
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +101 -46
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/chat/v2.rb +44 -0
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +381 -0
- data/lib/twilio-ruby/rest/chat/v2/service.rb +633 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +513 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +406 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +418 -0
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +373 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +433 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/client.rb +91 -75
- data/lib/twilio-ruby/rest/fax.rb +40 -0
- data/lib/twilio-ruby/rest/fax/v1.rb +35 -0
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +397 -0
- data/lib/twilio-ruby/rest/ip_messaging.rb +16 -9
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +4 -4
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +53 -47
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +446 -69
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +114 -69
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +99 -44
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +76 -54
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +45 -45
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +101 -46
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +44 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +381 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +633 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +513 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +363 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +406 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +418 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +373 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +433 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +223 -0
- data/lib/twilio-ruby/rest/lookups.rb +6 -6
- data/lib/twilio-ruby/rest/lookups/v1.rb +3 -3
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +30 -25
- data/lib/twilio-ruby/rest/messaging.rb +40 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +35 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +524 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +331 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +336 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +336 -0
- data/lib/twilio-ruby/rest/monitor.rb +7 -7
- data/lib/twilio-ruby/rest/monitor/v1.rb +4 -4
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +57 -85
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +63 -81
- data/lib/twilio-ruby/rest/notify.rb +7 -7
- data/lib/twilio-ruby/rest/notify/v1.rb +4 -4
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +53 -47
- data/lib/twilio-ruby/rest/notify/v1/service.rb +148 -60
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +70 -86
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +47 -33
- data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +206 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user.rb +418 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +247 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +405 -0
- data/lib/twilio-ruby/rest/preview.rb +34 -19
- data/lib/twilio-ruby/rest/preview/marketplace.rb +44 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +310 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +284 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +411 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +322 -0
- data/lib/twilio-ruby/rest/preview/sync.rb +3 -3
- data/lib/twilio-ruby/rest/preview/sync/service.rb +72 -61
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +85 -46
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +377 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +79 -47
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +46 -46
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +377 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +79 -47
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +46 -46
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +377 -0
- data/lib/twilio-ruby/rest/preview/wireless.rb +12 -12
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +68 -45
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +137 -73
- data/lib/twilio-ruby/rest/preview/wireless/{device.rb → sim.rb} +127 -150
- data/lib/twilio-ruby/rest/preview/wireless/{device → sim}/usage.rb +49 -49
- data/lib/twilio-ruby/rest/pricing.rb +8 -8
- data/lib/twilio-ruby/rest/pricing/v1.rb +5 -5
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +16 -16
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +33 -33
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +16 -16
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +33 -38
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +18 -18
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +33 -33
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +26 -26
- data/lib/twilio-ruby/rest/taskrouter.rb +6 -6
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +3 -3
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +103 -82
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +48 -43
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +42 -42
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +114 -75
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +50 -40
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +35 -35
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +110 -78
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +31 -30
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +24 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +71 -61
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +50 -40
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +45 -45
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +28 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +28 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +60 -50
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +29 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +34 -29
- data/lib/twilio-ruby/rest/trunking.rb +6 -6
- data/lib/twilio-ruby/rest/trunking/v1.rb +3 -3
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +67 -67
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +39 -39
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +39 -39
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +47 -47
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +58 -58
- data/lib/twilio-ruby/rest/video.rb +44 -0
- data/lib/twilio-ruby/rest/video/v1.rb +44 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +341 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +411 -0
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +226 -0
- data/spec/integration/accounts/v1/credential_spec.rb +10 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +7 -7
- data/spec/integration/api/v2010/account/address_spec.rb +32 -24
- data/spec/integration/api/v2010/account/application_spec.rb +24 -24
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +11 -11
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +7 -7
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +7 -7
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +7 -7
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +11 -11
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +14 -14
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +14 -14
- data/spec/integration/api/v2010/account/call/notification_spec.rb +15 -15
- data/spec/integration/api/v2010/account/call/recording_spec.rb +15 -15
- data/spec/integration/api/v2010/account/call_spec.rb +24 -24
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +97 -25
- data/spec/integration/api/v2010/account/conference_spec.rb +56 -17
- data/spec/integration/api/v2010/account/connect_app_spec.rb +15 -15
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +135 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +223 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +12 -12
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +12 -12
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +12 -12
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +32 -24
- data/spec/integration/api/v2010/account/key_spec.rb +19 -19
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +25 -3
- data/spec/integration/api/v2010/account/message/media_spec.rb +15 -15
- data/spec/integration/api/v2010/account/message_spec.rb +34 -27
- data/spec/integration/api/v2010/account/new_key_spec.rb +5 -5
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +5 -5
- data/spec/integration/api/v2010/account/notification_spec.rb +15 -15
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +19 -19
- data/spec/integration/api/v2010/account/queue/member_spec.rb +15 -15
- data/spec/integration/api/v2010/account/queue_spec.rb +30 -27
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +175 -0
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +166 -0
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +15 -15
- data/spec/integration/api/v2010/account/recording_spec.rb +16 -16
- data/spec/integration/api/v2010/account/short_code_spec.rb +15 -15
- data/spec/integration/api/v2010/account/signing_key_spec.rb +19 -19
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +20 -20
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +20 -20
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip_spec.rb +1 -1
- data/spec/integration/api/v2010/account/token_spec.rb +6 -6
- data/spec/integration/api/v2010/account/transcription_spec.rb +15 -15
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/record_spec.rb +7 -7
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +27 -27
- data/spec/integration/api/v2010/account/usage_spec.rb +1 -1
- data/spec/integration/api/v2010/account/validation_request_spec.rb +23 -3
- data/spec/integration/api/v2010/account_spec.rb +20 -24
- data/spec/integration/chat/v1/credential_spec.rb +31 -31
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +210 -0
- data/spec/integration/chat/v1/service/channel/member_spec.rb +102 -31
- data/spec/integration/chat/v1/service/channel/message_spec.rb +210 -16
- data/spec/integration/chat/v1/service/channel_spec.rb +71 -55
- data/spec/integration/chat/v1/service/role_spec.rb +33 -33
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/chat/v1/service/user_spec.rb +57 -33
- data/spec/integration/chat/v1/service_spec.rb +142 -106
- data/spec/integration/chat/v2/credential_spec.rb +223 -0
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +210 -0
- data/spec/integration/chat/v2/service/channel/member_spec.rb +284 -0
- data/spec/integration/chat/v2/service/channel/message_spec.rb +294 -0
- data/spec/integration/chat/v2/service/channel_spec.rb +275 -0
- data/spec/integration/chat/v2/service/role_spec.rb +263 -0
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/chat/v2/service/user_spec.rb +266 -0
- data/spec/integration/chat/v2/service_spec.rb +325 -0
- data/spec/integration/fax/v1/fax_spec.rb +231 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +31 -31
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +210 -0
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +102 -31
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +210 -16
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +71 -55
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +33 -33
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +57 -33
- data/spec/integration/ip_messaging/v1/service_spec.rb +142 -106
- data/spec/integration/ip_messaging/v2/credential_spec.rb +223 -0
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +210 -0
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +284 -0
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +294 -0
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +275 -0
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +263 -0
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +266 -0
- data/spec/integration/ip_messaging/v2/service_spec.rb +325 -0
- data/spec/integration/lookups/v1/phone_number_spec.rb +5 -5
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +170 -0
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +173 -0
- data/spec/integration/messaging/v1/service/short_code_spec.rb +173 -0
- data/spec/integration/messaging/v1/service_spec.rb +243 -0
- data/spec/integration/monitor/v1/alert_spec.rb +57 -57
- data/spec/integration/monitor/v1/event_spec.rb +11 -11
- data/spec/integration/notify/v1/credential_spec.rb +23 -23
- data/spec/integration/notify/v1/service/binding_spec.rb +88 -71
- data/spec/integration/notify/v1/service/notification_spec.rb +7 -5
- data/spec/integration/notify/v1/service/segment_spec.rb +84 -0
- data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +118 -0
- data/spec/integration/notify/v1/service/user/user_binding_spec.rb +235 -0
- data/spec/integration/notify/v1/service/user_spec.rb +213 -0
- data/spec/integration/notify/v1/service_spec.rb +50 -30
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +121 -0
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +142 -0
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +164 -0
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +252 -0
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +206 -0
- data/spec/integration/preview/sync/service/document_spec.rb +179 -17
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +167 -11
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +206 -0
- data/spec/integration/preview/sync/service/sync_list_spec.rb +143 -9
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +167 -11
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +206 -0
- data/spec/integration/preview/sync/service/sync_map_spec.rb +143 -9
- data/spec/integration/preview/sync/service_spec.rb +171 -11
- data/spec/integration/preview/wireless/command_spec.rb +120 -9
- data/spec/integration/preview/wireless/rate_plan_spec.rb +228 -7
- data/spec/integration/preview/wireless/sim/usage_spec.rb +49 -0
- data/spec/integration/preview/wireless/sim_spec.rb +184 -0
- data/spec/integration/pricing/v1/messaging/country_spec.rb +101 -5
- data/spec/integration/pricing/v1/messaging_spec.rb +1 -1
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +11 -11
- data/spec/integration/pricing/v1/phone_number_spec.rb +1 -1
- data/spec/integration/pricing/v1/voice/country_spec.rb +11 -11
- data/spec/integration/pricing/v1/voice/number_spec.rb +5 -5
- data/spec/integration/pricing/v1/voice_spec.rb +1 -1
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +29 -33
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +11 -11
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +15 -15
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +11 -11
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +12 -10
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +17 -16
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +52 -36
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +101 -46
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +15 -15
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +15 -15
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +6 -5
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +6 -5
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +39 -27
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +13 -11
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +47 -35
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +10 -8
- data/spec/integration/taskrouter/v1/workspace_spec.rb +28 -24
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +20 -20
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +62 -62
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +23 -23
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +19 -19
- data/spec/integration/trunking/v1/trunk_spec.rb +23 -23
- data/spec/integration/video/v1/recording_spec.rb +120 -0
- data/spec/integration/video/v1/room_spec.rb +225 -0
- data/spec/jwt/access_token_spec.rb +22 -0
- metadata +158 -12
- data/lib/twilio-ruby/rest/api/v2010/account/sandbox.rb +0 -287
- data/spec/integration/api/v2010/account/sandbox_spec.rb +0 -99
- data/spec/integration/preview/wireless/device/usage_spec.rb +0 -25
- 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
|
@@ -17,14 +17,14 @@ module Twilio
|
|
17
17
|
# @return [UserList] UserList
|
18
18
|
def initialize(version, service_sid: nil)
|
19
19
|
super(version)
|
20
|
-
|
20
|
+
|
21
21
|
# Path Solution
|
22
22
|
@solution = {
|
23
23
|
service_sid: service_sid
|
24
24
|
}
|
25
25
|
@uri = "/Services/#{@solution[:service_sid]}/Users"
|
26
26
|
end
|
27
|
-
|
27
|
+
|
28
28
|
##
|
29
29
|
# Retrieve a single page of UserInstance records from the API.
|
30
30
|
# Request is executed immediately.
|
@@ -40,20 +40,20 @@ module Twilio
|
|
40
40
|
'Attributes' => attributes,
|
41
41
|
'FriendlyName' => friendly_name,
|
42
42
|
}
|
43
|
-
|
43
|
+
|
44
44
|
payload = @version.create(
|
45
45
|
'POST',
|
46
46
|
@uri,
|
47
47
|
data: data
|
48
48
|
)
|
49
|
-
|
49
|
+
|
50
50
|
return UserInstance.new(
|
51
51
|
@version,
|
52
52
|
payload,
|
53
53
|
service_sid: @solution[:service_sid],
|
54
54
|
)
|
55
55
|
end
|
56
|
-
|
56
|
+
|
57
57
|
##
|
58
58
|
# Lists UserInstance records from the API as a list.
|
59
59
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
@@ -71,7 +71,7 @@ module Twilio
|
|
71
71
|
page_size: page_size
|
72
72
|
).entries
|
73
73
|
end
|
74
|
-
|
74
|
+
|
75
75
|
##
|
76
76
|
# Streams UserInstance records from the API as an Enumerable.
|
77
77
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -85,14 +85,14 @@ module Twilio
|
|
85
85
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
86
86
|
def stream(limit: nil, page_size: nil)
|
87
87
|
limits = @version.read_limits(limit, page_size)
|
88
|
-
|
88
|
+
|
89
89
|
page = self.page(
|
90
90
|
page_size: limits[:page_size],
|
91
91
|
)
|
92
|
-
|
92
|
+
|
93
93
|
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
94
94
|
end
|
95
|
-
|
95
|
+
|
96
96
|
##
|
97
97
|
# When passed a block, yields UserInstance records from the API.
|
98
98
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -105,16 +105,16 @@ module Twilio
|
|
105
105
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
106
106
|
def each
|
107
107
|
limits = @version.read_limits
|
108
|
-
|
108
|
+
|
109
109
|
page = self.page(
|
110
110
|
page_size: limits[:page_size],
|
111
111
|
)
|
112
|
-
|
112
|
+
|
113
113
|
@version.stream(page,
|
114
114
|
limit: limits[:limit],
|
115
115
|
page_limit: limits[:page_limit]).each {|x| yield x}
|
116
116
|
end
|
117
|
-
|
117
|
+
|
118
118
|
##
|
119
119
|
# Retrieve a single page of UserInstance records from the API.
|
120
120
|
# Request is executed immediately.
|
@@ -135,14 +135,14 @@ module Twilio
|
|
135
135
|
)
|
136
136
|
return UserPage.new(@version, response, @solution)
|
137
137
|
end
|
138
|
-
|
138
|
+
|
139
139
|
##
|
140
140
|
# Provide a user friendly representation
|
141
141
|
def to_s
|
142
142
|
'#<Twilio.Chat.V1.UserList>'
|
143
143
|
end
|
144
144
|
end
|
145
|
-
|
145
|
+
|
146
146
|
class UserPage < Page
|
147
147
|
##
|
148
148
|
# Initialize the UserPage
|
@@ -153,11 +153,11 @@ module Twilio
|
|
153
153
|
# @return [UserPage] UserPage
|
154
154
|
def initialize(version, response, solution)
|
155
155
|
super(version, response)
|
156
|
-
|
156
|
+
|
157
157
|
# Path Solution
|
158
158
|
@solution = solution
|
159
159
|
end
|
160
|
-
|
160
|
+
|
161
161
|
##
|
162
162
|
# Build an instance of UserInstance
|
163
163
|
# @param [Hash] payload Payload response from the API
|
@@ -169,14 +169,14 @@ module Twilio
|
|
169
169
|
service_sid: @solution[:service_sid],
|
170
170
|
)
|
171
171
|
end
|
172
|
-
|
172
|
+
|
173
173
|
##
|
174
174
|
# Provide a user friendly representation
|
175
175
|
def to_s
|
176
176
|
'<Twilio.Chat.V1.UserPage>'
|
177
177
|
end
|
178
178
|
end
|
179
|
-
|
179
|
+
|
180
180
|
class UserContext < InstanceContext
|
181
181
|
##
|
182
182
|
# Initialize the UserContext
|
@@ -186,27 +186,30 @@ module Twilio
|
|
186
186
|
# @return [UserContext] UserContext
|
187
187
|
def initialize(version, service_sid, sid)
|
188
188
|
super(version)
|
189
|
-
|
189
|
+
|
190
190
|
# Path Solution
|
191
191
|
@solution = {
|
192
192
|
service_sid: service_sid,
|
193
193
|
sid: sid,
|
194
194
|
}
|
195
195
|
@uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:sid]}"
|
196
|
+
|
197
|
+
# Dependents
|
198
|
+
@user_channels = nil
|
196
199
|
end
|
197
|
-
|
200
|
+
|
198
201
|
##
|
199
202
|
# Fetch a UserInstance
|
200
203
|
# @return [UserInstance] Fetched UserInstance
|
201
204
|
def fetch
|
202
205
|
params = {}
|
203
|
-
|
206
|
+
|
204
207
|
payload = @version.fetch(
|
205
208
|
'GET',
|
206
209
|
@uri,
|
207
210
|
params,
|
208
211
|
)
|
209
|
-
|
212
|
+
|
210
213
|
return UserInstance.new(
|
211
214
|
@version,
|
212
215
|
payload,
|
@@ -214,18 +217,18 @@ module Twilio
|
|
214
217
|
sid: @solution[:sid],
|
215
218
|
)
|
216
219
|
end
|
217
|
-
|
220
|
+
|
218
221
|
##
|
219
222
|
# Deletes the UserInstance
|
220
223
|
# @return [Boolean] true if delete succeeds, true otherwise
|
221
224
|
def delete
|
222
225
|
return @version.delete('delete', @uri)
|
223
226
|
end
|
224
|
-
|
227
|
+
|
225
228
|
##
|
226
229
|
# Update the UserInstance
|
227
230
|
# @param [String] role_sid The role_sid
|
228
|
-
# @param [
|
231
|
+
# @param [String] attributes The attributes
|
229
232
|
# @param [String] friendly_name The friendly_name
|
230
233
|
# @return [UserInstance] Updated UserInstance
|
231
234
|
def update(role_sid: nil, attributes: nil, friendly_name: nil)
|
@@ -234,13 +237,13 @@ module Twilio
|
|
234
237
|
'Attributes' => attributes,
|
235
238
|
'FriendlyName' => friendly_name,
|
236
239
|
}
|
237
|
-
|
240
|
+
|
238
241
|
payload = @version.update(
|
239
242
|
'POST',
|
240
243
|
@uri,
|
241
244
|
data: data,
|
242
245
|
)
|
243
|
-
|
246
|
+
|
244
247
|
return UserInstance.new(
|
245
248
|
@version,
|
246
249
|
payload,
|
@@ -248,7 +251,22 @@ module Twilio
|
|
248
251
|
sid: @solution[:sid],
|
249
252
|
)
|
250
253
|
end
|
251
|
-
|
254
|
+
|
255
|
+
##
|
256
|
+
# Access the user_channels
|
257
|
+
# @return [UserChannelList] UserChannelList
|
258
|
+
def user_channels
|
259
|
+
unless @user_channels
|
260
|
+
@user_channels = UserChannelList.new(
|
261
|
+
@version,
|
262
|
+
service_sid: @solution[:service_sid],
|
263
|
+
user_sid: @solution[:sid],
|
264
|
+
)
|
265
|
+
end
|
266
|
+
|
267
|
+
@user_channels
|
268
|
+
end
|
269
|
+
|
252
270
|
##
|
253
271
|
# Provide a user friendly representation
|
254
272
|
def to_s
|
@@ -256,7 +274,7 @@ module Twilio
|
|
256
274
|
"#<Twilio.Chat.V1.UserContext #{context}>"
|
257
275
|
end
|
258
276
|
end
|
259
|
-
|
277
|
+
|
260
278
|
class UserInstance < InstanceResource
|
261
279
|
##
|
262
280
|
# Initialize the UserInstance
|
@@ -267,19 +285,25 @@ module Twilio
|
|
267
285
|
# @return [UserInstance] UserInstance
|
268
286
|
def initialize(version, payload, service_sid: nil, sid: nil)
|
269
287
|
super(version)
|
270
|
-
|
288
|
+
|
271
289
|
# Marshaled Properties
|
272
290
|
@properties = {
|
273
291
|
'sid' => payload['sid'],
|
274
292
|
'account_sid' => payload['account_sid'],
|
275
293
|
'service_sid' => payload['service_sid'],
|
294
|
+
'attributes' => payload['attributes'],
|
295
|
+
'friendly_name' => payload['friendly_name'],
|
276
296
|
'role_sid' => payload['role_sid'],
|
277
297
|
'identity' => payload['identity'],
|
298
|
+
'is_online' => payload['is_online'],
|
299
|
+
'is_notifiable' => payload['is_notifiable'],
|
278
300
|
'date_created' => Twilio.deserialize_iso8601(payload['date_created']),
|
279
301
|
'date_updated' => Twilio.deserialize_iso8601(payload['date_updated']),
|
302
|
+
'joined_channels_count' => payload['joined_channels_count'].to_i,
|
303
|
+
'links' => payload['links'],
|
280
304
|
'url' => payload['url'],
|
281
305
|
}
|
282
|
-
|
306
|
+
|
283
307
|
# Context
|
284
308
|
@instance_context = nil
|
285
309
|
@params = {
|
@@ -287,7 +311,7 @@ module Twilio
|
|
287
311
|
'sid' => sid || @properties['sid'],
|
288
312
|
}
|
289
313
|
end
|
290
|
-
|
314
|
+
|
291
315
|
##
|
292
316
|
# Generate an instance context for the instance, the context is capable of
|
293
317
|
# performing various actions. All instance actions are proxied to the context
|
@@ -303,57 +327,81 @@ module Twilio
|
|
303
327
|
end
|
304
328
|
@instance_context
|
305
329
|
end
|
306
|
-
|
330
|
+
|
307
331
|
def sid
|
308
332
|
@properties['sid']
|
309
333
|
end
|
310
|
-
|
334
|
+
|
311
335
|
def account_sid
|
312
336
|
@properties['account_sid']
|
313
337
|
end
|
314
|
-
|
338
|
+
|
315
339
|
def service_sid
|
316
340
|
@properties['service_sid']
|
317
341
|
end
|
318
|
-
|
342
|
+
|
343
|
+
def attributes
|
344
|
+
@properties['attributes']
|
345
|
+
end
|
346
|
+
|
347
|
+
def friendly_name
|
348
|
+
@properties['friendly_name']
|
349
|
+
end
|
350
|
+
|
319
351
|
def role_sid
|
320
352
|
@properties['role_sid']
|
321
353
|
end
|
322
|
-
|
354
|
+
|
323
355
|
def identity
|
324
356
|
@properties['identity']
|
325
357
|
end
|
326
|
-
|
358
|
+
|
359
|
+
def is_online
|
360
|
+
@properties['is_online']
|
361
|
+
end
|
362
|
+
|
363
|
+
def is_notifiable
|
364
|
+
@properties['is_notifiable']
|
365
|
+
end
|
366
|
+
|
327
367
|
def date_created
|
328
368
|
@properties['date_created']
|
329
369
|
end
|
330
|
-
|
370
|
+
|
331
371
|
def date_updated
|
332
372
|
@properties['date_updated']
|
333
373
|
end
|
334
|
-
|
374
|
+
|
375
|
+
def joined_channels_count
|
376
|
+
@properties['joined_channels_count']
|
377
|
+
end
|
378
|
+
|
379
|
+
def links
|
380
|
+
@properties['links']
|
381
|
+
end
|
382
|
+
|
335
383
|
def url
|
336
384
|
@properties['url']
|
337
385
|
end
|
338
|
-
|
386
|
+
|
339
387
|
##
|
340
388
|
# Fetch a UserInstance
|
341
389
|
# @return [UserInstance] Fetched UserInstance
|
342
390
|
def fetch
|
343
391
|
context.fetch
|
344
392
|
end
|
345
|
-
|
393
|
+
|
346
394
|
##
|
347
395
|
# Deletes the UserInstance
|
348
396
|
# @return [Boolean] true if delete succeeds, true otherwise
|
349
397
|
def delete
|
350
398
|
context.delete
|
351
399
|
end
|
352
|
-
|
400
|
+
|
353
401
|
##
|
354
402
|
# Update the UserInstance
|
355
403
|
# @param [String] role_sid The role_sid
|
356
|
-
# @param [
|
404
|
+
# @param [String] attributes The attributes
|
357
405
|
# @param [String] friendly_name The friendly_name
|
358
406
|
# @return [UserInstance] Updated UserInstance
|
359
407
|
def update(role_sid: nil, attributes: nil, friendly_name: nil)
|
@@ -363,7 +411,14 @@ module Twilio
|
|
363
411
|
friendly_name: friendly_name,
|
364
412
|
)
|
365
413
|
end
|
366
|
-
|
414
|
+
|
415
|
+
##
|
416
|
+
# Access the user_channels
|
417
|
+
# @return [user_channels] user_channels
|
418
|
+
def user_channels
|
419
|
+
context.user_channels
|
420
|
+
end
|
421
|
+
|
367
422
|
##
|
368
423
|
# Provide a user friendly representation
|
369
424
|
def to_s
|
@@ -0,0 +1,223 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# \ / _ _ _| _ _
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
+
# / /
|
6
|
+
|
7
|
+
module Twilio
|
8
|
+
module REST
|
9
|
+
class Chat < Domain
|
10
|
+
class V1 < Version
|
11
|
+
class ServiceContext < InstanceContext
|
12
|
+
class UserContext < InstanceContext
|
13
|
+
class UserChannelList < ListResource
|
14
|
+
##
|
15
|
+
# Initialize the UserChannelList
|
16
|
+
# @param [Version] version Version that contains the resource
|
17
|
+
# @param [String] service_sid The service_sid
|
18
|
+
# @param [String] user_sid The sid
|
19
|
+
# @return [UserChannelList] UserChannelList
|
20
|
+
def initialize(version, service_sid: nil, user_sid: nil)
|
21
|
+
super(version)
|
22
|
+
|
23
|
+
# Path Solution
|
24
|
+
@solution = {
|
25
|
+
service_sid: service_sid,
|
26
|
+
user_sid: user_sid
|
27
|
+
}
|
28
|
+
@uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:user_sid]}/Channels"
|
29
|
+
end
|
30
|
+
|
31
|
+
##
|
32
|
+
# Lists UserChannelInstance records from the API as a list.
|
33
|
+
# Unlike stream(), this operation is eager and will load `limit` records into
|
34
|
+
# memory before returning.
|
35
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
36
|
+
# guarantees to never return more than limit. Default is no limit
|
37
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
38
|
+
# the default value of 50 records. If no page_size is defined
|
39
|
+
# but a limit is defined, stream() will attempt to read the
|
40
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
41
|
+
# @return [Array] Array of up to limit results
|
42
|
+
def list(limit: nil, page_size: nil)
|
43
|
+
self.stream(
|
44
|
+
limit: limit,
|
45
|
+
page_size: page_size
|
46
|
+
).entries
|
47
|
+
end
|
48
|
+
|
49
|
+
##
|
50
|
+
# Streams UserChannelInstance records from the API as an Enumerable.
|
51
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
52
|
+
# is reached.
|
53
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
54
|
+
# guarantees to never return more than limit. Default is no limit
|
55
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
56
|
+
# the default value of 50 records. If no page_size is defined
|
57
|
+
# but a limit is defined, stream() will attempt to read the
|
58
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
59
|
+
# @return [Enumerable] Enumerable that will yield up to limit results
|
60
|
+
def stream(limit: nil, page_size: nil)
|
61
|
+
limits = @version.read_limits(limit, page_size)
|
62
|
+
|
63
|
+
page = self.page(
|
64
|
+
page_size: limits[:page_size],
|
65
|
+
)
|
66
|
+
|
67
|
+
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
68
|
+
end
|
69
|
+
|
70
|
+
##
|
71
|
+
# When passed a block, yields UserChannelInstance records from the API.
|
72
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
73
|
+
# is reached.
|
74
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
75
|
+
# guarantees to never return more than limit. Default is no limit
|
76
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
77
|
+
# the default value of 50 records. If no page_size is defined
|
78
|
+
# but a limit is defined, stream() will attempt to read the
|
79
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
80
|
+
def each
|
81
|
+
limits = @version.read_limits
|
82
|
+
|
83
|
+
page = self.page(
|
84
|
+
page_size: limits[:page_size],
|
85
|
+
)
|
86
|
+
|
87
|
+
@version.stream(page,
|
88
|
+
limit: limits[:limit],
|
89
|
+
page_limit: limits[:page_limit]).each {|x| yield x}
|
90
|
+
end
|
91
|
+
|
92
|
+
##
|
93
|
+
# Retrieve a single page of UserChannelInstance records from the API.
|
94
|
+
# Request is executed immediately.
|
95
|
+
# @param [String] page_token PageToken provided by the API
|
96
|
+
# @param [Integer] page_number Page Number, this value is simply for client state
|
97
|
+
# @param [Integer] page_size Number of records to return, defaults to 50
|
98
|
+
# @return [Page] Page of UserChannelInstance
|
99
|
+
def page(page_token: nil, page_number: nil, page_size: nil)
|
100
|
+
params = {
|
101
|
+
'PageToken' => page_token,
|
102
|
+
'Page' => page_number,
|
103
|
+
'PageSize' => page_size,
|
104
|
+
}
|
105
|
+
response = @version.page(
|
106
|
+
'GET',
|
107
|
+
@uri,
|
108
|
+
params
|
109
|
+
)
|
110
|
+
return UserChannelPage.new(@version, response, @solution)
|
111
|
+
end
|
112
|
+
|
113
|
+
##
|
114
|
+
# Provide a user friendly representation
|
115
|
+
def to_s
|
116
|
+
'#<Twilio.Chat.V1.UserChannelList>'
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
class UserChannelPage < Page
|
121
|
+
##
|
122
|
+
# Initialize the UserChannelPage
|
123
|
+
# @param [Version] version Version that contains the resource
|
124
|
+
# @param [Response] response Response from the API
|
125
|
+
# @param [Hash] solution Path solution for the resource
|
126
|
+
# @param [String] service_sid The service_sid
|
127
|
+
# @param [String] user_sid The sid
|
128
|
+
# @return [UserChannelPage] UserChannelPage
|
129
|
+
def initialize(version, response, solution)
|
130
|
+
super(version, response)
|
131
|
+
|
132
|
+
# Path Solution
|
133
|
+
@solution = solution
|
134
|
+
end
|
135
|
+
|
136
|
+
##
|
137
|
+
# Build an instance of UserChannelInstance
|
138
|
+
# @param [Hash] payload Payload response from the API
|
139
|
+
# @return [UserChannelInstance] UserChannelInstance
|
140
|
+
def get_instance(payload)
|
141
|
+
return UserChannelInstance.new(
|
142
|
+
@version,
|
143
|
+
payload,
|
144
|
+
service_sid: @solution[:service_sid],
|
145
|
+
user_sid: @solution[:user_sid],
|
146
|
+
)
|
147
|
+
end
|
148
|
+
|
149
|
+
##
|
150
|
+
# Provide a user friendly representation
|
151
|
+
def to_s
|
152
|
+
'<Twilio.Chat.V1.UserChannelPage>'
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
class UserChannelInstance < InstanceResource
|
157
|
+
##
|
158
|
+
# Initialize the UserChannelInstance
|
159
|
+
# @param [Version] version Version that contains the resource
|
160
|
+
# @param [Hash] payload payload that contains response from Twilio
|
161
|
+
# @param [String] service_sid The service_sid
|
162
|
+
# @param [String] user_sid The sid
|
163
|
+
# @return [UserChannelInstance] UserChannelInstance
|
164
|
+
def initialize(version, payload, service_sid: nil, user_sid: nil)
|
165
|
+
super(version)
|
166
|
+
|
167
|
+
# Marshaled Properties
|
168
|
+
@properties = {
|
169
|
+
'account_sid' => payload['account_sid'],
|
170
|
+
'service_sid' => payload['service_sid'],
|
171
|
+
'channel_sid' => payload['channel_sid'],
|
172
|
+
'member_sid' => payload['member_sid'],
|
173
|
+
'status' => payload['status'],
|
174
|
+
'last_consumed_message_index' => payload['last_consumed_message_index'] == nil ? payload['last_consumed_message_index'] : payload['last_consumed_message_index'].to_i,
|
175
|
+
'unread_messages_count' => payload['unread_messages_count'] == nil ? payload['unread_messages_count'] : payload['unread_messages_count'].to_i,
|
176
|
+
'links' => payload['links'],
|
177
|
+
}
|
178
|
+
end
|
179
|
+
|
180
|
+
def account_sid
|
181
|
+
@properties['account_sid']
|
182
|
+
end
|
183
|
+
|
184
|
+
def service_sid
|
185
|
+
@properties['service_sid']
|
186
|
+
end
|
187
|
+
|
188
|
+
def channel_sid
|
189
|
+
@properties['channel_sid']
|
190
|
+
end
|
191
|
+
|
192
|
+
def member_sid
|
193
|
+
@properties['member_sid']
|
194
|
+
end
|
195
|
+
|
196
|
+
def status
|
197
|
+
@properties['status']
|
198
|
+
end
|
199
|
+
|
200
|
+
def last_consumed_message_index
|
201
|
+
@properties['last_consumed_message_index']
|
202
|
+
end
|
203
|
+
|
204
|
+
def unread_messages_count
|
205
|
+
@properties['unread_messages_count']
|
206
|
+
end
|
207
|
+
|
208
|
+
def links
|
209
|
+
@properties['links']
|
210
|
+
end
|
211
|
+
|
212
|
+
##
|
213
|
+
# Provide a user friendly representation
|
214
|
+
def to_s
|
215
|
+
"<Twilio.Chat.V1.UserChannelInstance>"
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|