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,25 +17,27 @@ module Twilio
|
|
17
17
|
# @return [TaskList] TaskList
|
18
18
|
def initialize(version, workspace_sid: nil)
|
19
19
|
super(version)
|
20
|
-
|
20
|
+
|
21
21
|
# Path Solution
|
22
22
|
@solution = {
|
23
23
|
workspace_sid: workspace_sid
|
24
24
|
}
|
25
25
|
@uri = "/Workspaces/#{@solution[:workspace_sid]}/Tasks"
|
26
26
|
end
|
27
|
-
|
27
|
+
|
28
28
|
##
|
29
29
|
# Lists TaskInstance records from the API as a list.
|
30
30
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
31
31
|
# memory before returning.
|
32
32
|
# @param [String] priority The priority
|
33
|
-
# @param [
|
33
|
+
# @param [String] assignment_status The assignment_status
|
34
34
|
# @param [String] workflow_sid The workflow_sid
|
35
35
|
# @param [String] workflow_name The workflow_name
|
36
36
|
# @param [String] task_queue_sid The task_queue_sid
|
37
37
|
# @param [String] task_queue_name The task_queue_name
|
38
|
-
# @param [String]
|
38
|
+
# @param [String] evaluate_task_attributes The evaluate_task_attributes
|
39
|
+
# @param [String] ordering The ordering
|
40
|
+
# @param [Boolean] has_addons The has_addons
|
39
41
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
40
42
|
# guarantees to never return more than limit. Default is no limit
|
41
43
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
@@ -43,7 +45,7 @@ module Twilio
|
|
43
45
|
# but a limit is defined, stream() will attempt to read the
|
44
46
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
45
47
|
# @return [Array] Array of up to limit results
|
46
|
-
def list(priority: nil, assignment_status: nil, workflow_sid: nil, workflow_name: nil, task_queue_sid: nil, task_queue_name: nil,
|
48
|
+
def list(priority: nil, assignment_status: nil, workflow_sid: nil, workflow_name: nil, task_queue_sid: nil, task_queue_name: nil, evaluate_task_attributes: nil, ordering: nil, has_addons: nil, limit: nil, page_size: nil)
|
47
49
|
self.stream(
|
48
50
|
priority: priority,
|
49
51
|
assignment_status: assignment_status,
|
@@ -51,23 +53,27 @@ module Twilio
|
|
51
53
|
workflow_name: workflow_name,
|
52
54
|
task_queue_sid: task_queue_sid,
|
53
55
|
task_queue_name: task_queue_name,
|
54
|
-
|
56
|
+
evaluate_task_attributes: evaluate_task_attributes,
|
57
|
+
ordering: ordering,
|
58
|
+
has_addons: has_addons,
|
55
59
|
limit: limit,
|
56
60
|
page_size: page_size
|
57
61
|
).entries
|
58
62
|
end
|
59
|
-
|
63
|
+
|
60
64
|
##
|
61
65
|
# Streams TaskInstance records from the API as an Enumerable.
|
62
66
|
# This operation lazily loads records as efficiently as possible until the limit
|
63
67
|
# is reached.
|
64
68
|
# @param [String] priority The priority
|
65
|
-
# @param [
|
69
|
+
# @param [String] assignment_status The assignment_status
|
66
70
|
# @param [String] workflow_sid The workflow_sid
|
67
71
|
# @param [String] workflow_name The workflow_name
|
68
72
|
# @param [String] task_queue_sid The task_queue_sid
|
69
73
|
# @param [String] task_queue_name The task_queue_name
|
70
|
-
# @param [String]
|
74
|
+
# @param [String] evaluate_task_attributes The evaluate_task_attributes
|
75
|
+
# @param [String] ordering The ordering
|
76
|
+
# @param [Boolean] has_addons The has_addons
|
71
77
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
72
78
|
# guarantees to never return more than limit. Default is no limit
|
73
79
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
@@ -75,9 +81,9 @@ module Twilio
|
|
75
81
|
# but a limit is defined, stream() will attempt to read the
|
76
82
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
77
83
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
78
|
-
def stream(priority: nil, assignment_status: nil, workflow_sid: nil, workflow_name: nil, task_queue_sid: nil, task_queue_name: nil,
|
84
|
+
def stream(priority: nil, assignment_status: nil, workflow_sid: nil, workflow_name: nil, task_queue_sid: nil, task_queue_name: nil, evaluate_task_attributes: nil, ordering: nil, has_addons: nil, limit: nil, page_size: nil)
|
79
85
|
limits = @version.read_limits(limit, page_size)
|
80
|
-
|
86
|
+
|
81
87
|
page = self.page(
|
82
88
|
priority: priority,
|
83
89
|
assignment_status: assignment_status,
|
@@ -85,24 +91,28 @@ module Twilio
|
|
85
91
|
workflow_name: workflow_name,
|
86
92
|
task_queue_sid: task_queue_sid,
|
87
93
|
task_queue_name: task_queue_name,
|
88
|
-
|
94
|
+
evaluate_task_attributes: evaluate_task_attributes,
|
95
|
+
ordering: ordering,
|
96
|
+
has_addons: has_addons,
|
89
97
|
page_size: limits[:page_size],
|
90
98
|
)
|
91
|
-
|
99
|
+
|
92
100
|
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
93
101
|
end
|
94
|
-
|
102
|
+
|
95
103
|
##
|
96
104
|
# When passed a block, yields TaskInstance records from the API.
|
97
105
|
# This operation lazily loads records as efficiently as possible until the limit
|
98
106
|
# is reached.
|
99
107
|
# @param [String] priority The priority
|
100
|
-
# @param [
|
108
|
+
# @param [String] assignment_status The assignment_status
|
101
109
|
# @param [String] workflow_sid The workflow_sid
|
102
110
|
# @param [String] workflow_name The workflow_name
|
103
111
|
# @param [String] task_queue_sid The task_queue_sid
|
104
112
|
# @param [String] task_queue_name The task_queue_name
|
105
|
-
# @param [String]
|
113
|
+
# @param [String] evaluate_task_attributes The evaluate_task_attributes
|
114
|
+
# @param [String] ordering The ordering
|
115
|
+
# @param [Boolean] has_addons The has_addons
|
106
116
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
107
117
|
# guarantees to never return more than limit. Default is no limit
|
108
118
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
@@ -111,31 +121,33 @@ module Twilio
|
|
111
121
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
112
122
|
def each
|
113
123
|
limits = @version.read_limits
|
114
|
-
|
124
|
+
|
115
125
|
page = self.page(
|
116
126
|
page_size: limits[:page_size],
|
117
127
|
)
|
118
|
-
|
128
|
+
|
119
129
|
@version.stream(page,
|
120
130
|
limit: limits[:limit],
|
121
131
|
page_limit: limits[:page_limit]).each {|x| yield x}
|
122
132
|
end
|
123
|
-
|
133
|
+
|
124
134
|
##
|
125
135
|
# Retrieve a single page of TaskInstance records from the API.
|
126
136
|
# Request is executed immediately.
|
127
137
|
# @param [String] priority The priority
|
128
|
-
# @param [
|
138
|
+
# @param [String] assignment_status The assignment_status
|
129
139
|
# @param [String] workflow_sid The workflow_sid
|
130
140
|
# @param [String] workflow_name The workflow_name
|
131
141
|
# @param [String] task_queue_sid The task_queue_sid
|
132
142
|
# @param [String] task_queue_name The task_queue_name
|
133
|
-
# @param [String]
|
143
|
+
# @param [String] evaluate_task_attributes The evaluate_task_attributes
|
144
|
+
# @param [String] ordering The ordering
|
145
|
+
# @param [Boolean] has_addons The has_addons
|
134
146
|
# @param [String] page_token PageToken provided by the API
|
135
147
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
136
148
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
137
149
|
# @return [Page] Page of TaskInstance
|
138
|
-
def page(priority: nil, assignment_status: nil, workflow_sid: nil, workflow_name: nil, task_queue_sid: nil, task_queue_name: nil,
|
150
|
+
def page(priority: nil, assignment_status: nil, workflow_sid: nil, workflow_name: nil, task_queue_sid: nil, task_queue_name: nil, evaluate_task_attributes: nil, ordering: nil, has_addons: nil, page_token: nil, page_number: nil, page_size: nil)
|
139
151
|
params = {
|
140
152
|
'Priority' => priority,
|
141
153
|
'AssignmentStatus' => assignment_status,
|
@@ -143,7 +155,9 @@ module Twilio
|
|
143
155
|
'WorkflowName' => workflow_name,
|
144
156
|
'TaskQueueSid' => task_queue_sid,
|
145
157
|
'TaskQueueName' => task_queue_name,
|
146
|
-
'
|
158
|
+
'EvaluateTaskAttributes' => evaluate_task_attributes,
|
159
|
+
'Ordering' => ordering,
|
160
|
+
'HasAddons' => has_addons,
|
147
161
|
'PageToken' => page_token,
|
148
162
|
'Page' => page_number,
|
149
163
|
'PageSize' => page_size,
|
@@ -155,45 +169,45 @@ module Twilio
|
|
155
169
|
)
|
156
170
|
return TaskPage.new(@version, response, @solution)
|
157
171
|
end
|
158
|
-
|
172
|
+
|
159
173
|
##
|
160
174
|
# Retrieve a single page of TaskInstance records from the API.
|
161
175
|
# Request is executed immediately.
|
162
|
-
# @param [String] attributes The attributes
|
163
|
-
# @param [String] workflow_sid The workflow_sid
|
164
176
|
# @param [String] timeout The timeout
|
165
177
|
# @param [String] priority The priority
|
166
178
|
# @param [String] task_channel The task_channel
|
179
|
+
# @param [String] workflow_sid The workflow_sid
|
180
|
+
# @param [String] attributes The attributes
|
167
181
|
# @return [TaskInstance] Newly created TaskInstance
|
168
|
-
def create(
|
182
|
+
def create(timeout: nil, priority: nil, task_channel: nil, workflow_sid: nil, attributes: nil)
|
169
183
|
data = {
|
170
|
-
'Attributes' => attributes,
|
171
|
-
'WorkflowSid' => workflow_sid,
|
172
184
|
'Timeout' => timeout,
|
173
185
|
'Priority' => priority,
|
174
186
|
'TaskChannel' => task_channel,
|
187
|
+
'WorkflowSid' => workflow_sid,
|
188
|
+
'Attributes' => attributes,
|
175
189
|
}
|
176
|
-
|
190
|
+
|
177
191
|
payload = @version.create(
|
178
192
|
'POST',
|
179
193
|
@uri,
|
180
194
|
data: data
|
181
195
|
)
|
182
|
-
|
196
|
+
|
183
197
|
return TaskInstance.new(
|
184
198
|
@version,
|
185
199
|
payload,
|
186
200
|
workspace_sid: @solution[:workspace_sid],
|
187
201
|
)
|
188
202
|
end
|
189
|
-
|
203
|
+
|
190
204
|
##
|
191
205
|
# Provide a user friendly representation
|
192
206
|
def to_s
|
193
207
|
'#<Twilio.Taskrouter.V1.TaskList>'
|
194
208
|
end
|
195
209
|
end
|
196
|
-
|
210
|
+
|
197
211
|
class TaskPage < Page
|
198
212
|
##
|
199
213
|
# Initialize the TaskPage
|
@@ -204,11 +218,11 @@ module Twilio
|
|
204
218
|
# @return [TaskPage] TaskPage
|
205
219
|
def initialize(version, response, solution)
|
206
220
|
super(version, response)
|
207
|
-
|
221
|
+
|
208
222
|
# Path Solution
|
209
223
|
@solution = solution
|
210
224
|
end
|
211
|
-
|
225
|
+
|
212
226
|
##
|
213
227
|
# Build an instance of TaskInstance
|
214
228
|
# @param [Hash] payload Payload response from the API
|
@@ -220,14 +234,14 @@ module Twilio
|
|
220
234
|
workspace_sid: @solution[:workspace_sid],
|
221
235
|
)
|
222
236
|
end
|
223
|
-
|
237
|
+
|
224
238
|
##
|
225
239
|
# Provide a user friendly representation
|
226
240
|
def to_s
|
227
241
|
'<Twilio.Taskrouter.V1.TaskPage>'
|
228
242
|
end
|
229
243
|
end
|
230
|
-
|
244
|
+
|
231
245
|
class TaskContext < InstanceContext
|
232
246
|
##
|
233
247
|
# Initialize the TaskContext
|
@@ -237,30 +251,30 @@ module Twilio
|
|
237
251
|
# @return [TaskContext] TaskContext
|
238
252
|
def initialize(version, workspace_sid, sid)
|
239
253
|
super(version)
|
240
|
-
|
254
|
+
|
241
255
|
# Path Solution
|
242
256
|
@solution = {
|
243
257
|
workspace_sid: workspace_sid,
|
244
258
|
sid: sid,
|
245
259
|
}
|
246
260
|
@uri = "/Workspaces/#{@solution[:workspace_sid]}/Tasks/#{@solution[:sid]}"
|
247
|
-
|
261
|
+
|
248
262
|
# Dependents
|
249
263
|
@reservations = nil
|
250
264
|
end
|
251
|
-
|
265
|
+
|
252
266
|
##
|
253
267
|
# Fetch a TaskInstance
|
254
268
|
# @return [TaskInstance] Fetched TaskInstance
|
255
269
|
def fetch
|
256
270
|
params = {}
|
257
|
-
|
271
|
+
|
258
272
|
payload = @version.fetch(
|
259
273
|
'GET',
|
260
274
|
@uri,
|
261
275
|
params,
|
262
276
|
)
|
263
|
-
|
277
|
+
|
264
278
|
return TaskInstance.new(
|
265
279
|
@version,
|
266
280
|
payload,
|
@@ -268,7 +282,7 @@ module Twilio
|
|
268
282
|
sid: @solution[:sid],
|
269
283
|
)
|
270
284
|
end
|
271
|
-
|
285
|
+
|
272
286
|
##
|
273
287
|
# Update the TaskInstance
|
274
288
|
# @param [String] attributes The attributes
|
@@ -285,13 +299,13 @@ module Twilio
|
|
285
299
|
'Priority' => priority,
|
286
300
|
'TaskChannel' => task_channel,
|
287
301
|
}
|
288
|
-
|
302
|
+
|
289
303
|
payload = @version.update(
|
290
304
|
'POST',
|
291
305
|
@uri,
|
292
306
|
data: data,
|
293
307
|
)
|
294
|
-
|
308
|
+
|
295
309
|
return TaskInstance.new(
|
296
310
|
@version,
|
297
311
|
payload,
|
@@ -299,14 +313,14 @@ module Twilio
|
|
299
313
|
sid: @solution[:sid],
|
300
314
|
)
|
301
315
|
end
|
302
|
-
|
316
|
+
|
303
317
|
##
|
304
318
|
# Deletes the TaskInstance
|
305
319
|
# @return [Boolean] true if delete succeeds, true otherwise
|
306
320
|
def delete
|
307
321
|
return @version.delete('delete', @uri)
|
308
322
|
end
|
309
|
-
|
323
|
+
|
310
324
|
##
|
311
325
|
# Access the reservations
|
312
326
|
# @return [ReservationList] ReservationList
|
@@ -319,7 +333,7 @@ module Twilio
|
|
319
333
|
sid,
|
320
334
|
)
|
321
335
|
end
|
322
|
-
|
336
|
+
|
323
337
|
unless @reservations
|
324
338
|
@reservations = ReservationList.new(
|
325
339
|
@version,
|
@@ -327,10 +341,10 @@ module Twilio
|
|
327
341
|
task_sid: @solution[:sid],
|
328
342
|
)
|
329
343
|
end
|
330
|
-
|
344
|
+
|
331
345
|
@reservations
|
332
346
|
end
|
333
|
-
|
347
|
+
|
334
348
|
##
|
335
349
|
# Provide a user friendly representation
|
336
350
|
def to_s
|
@@ -338,7 +352,7 @@ module Twilio
|
|
338
352
|
"#<Twilio.Taskrouter.V1.TaskContext #{context}>"
|
339
353
|
end
|
340
354
|
end
|
341
|
-
|
355
|
+
|
342
356
|
class TaskInstance < InstanceResource
|
343
357
|
##
|
344
358
|
# Initialize the TaskInstance
|
@@ -349,26 +363,31 @@ module Twilio
|
|
349
363
|
# @return [TaskInstance] TaskInstance
|
350
364
|
def initialize(version, payload, workspace_sid: nil, sid: nil)
|
351
365
|
super(version)
|
352
|
-
|
366
|
+
|
353
367
|
# Marshaled Properties
|
354
368
|
@properties = {
|
355
369
|
'account_sid' => payload['account_sid'],
|
356
370
|
'age' => payload['age'].to_i,
|
357
371
|
'assignment_status' => payload['assignment_status'],
|
358
372
|
'attributes' => payload['attributes'],
|
373
|
+
'addons' => payload['addons'],
|
359
374
|
'date_created' => Twilio.deserialize_iso8601(payload['date_created']),
|
360
375
|
'date_updated' => Twilio.deserialize_iso8601(payload['date_updated']),
|
361
376
|
'priority' => payload['priority'].to_i,
|
362
377
|
'reason' => payload['reason'],
|
363
378
|
'sid' => payload['sid'],
|
364
379
|
'task_queue_sid' => payload['task_queue_sid'],
|
380
|
+
'task_queue_friendly_name' => payload['task_queue_friendly_name'],
|
365
381
|
'task_channel_sid' => payload['task_channel_sid'],
|
366
382
|
'task_channel_unique_name' => payload['task_channel_unique_name'],
|
367
383
|
'timeout' => payload['timeout'].to_i,
|
368
384
|
'workflow_sid' => payload['workflow_sid'],
|
385
|
+
'workflow_friendly_name' => payload['workflow_friendly_name'],
|
369
386
|
'workspace_sid' => payload['workspace_sid'],
|
387
|
+
'url' => payload['url'],
|
388
|
+
'links' => payload['links'],
|
370
389
|
}
|
371
|
-
|
390
|
+
|
372
391
|
# Context
|
373
392
|
@instance_context = nil
|
374
393
|
@params = {
|
@@ -376,7 +395,7 @@ module Twilio
|
|
376
395
|
'sid' => sid || @properties['sid'],
|
377
396
|
}
|
378
397
|
end
|
379
|
-
|
398
|
+
|
380
399
|
##
|
381
400
|
# Generate an instance context for the instance, the context is capable of
|
382
401
|
# performing various actions. All instance actions are proxied to the context
|
@@ -392,74 +411,94 @@ module Twilio
|
|
392
411
|
end
|
393
412
|
@instance_context
|
394
413
|
end
|
395
|
-
|
414
|
+
|
396
415
|
def account_sid
|
397
416
|
@properties['account_sid']
|
398
417
|
end
|
399
|
-
|
418
|
+
|
400
419
|
def age
|
401
420
|
@properties['age']
|
402
421
|
end
|
403
|
-
|
422
|
+
|
404
423
|
def assignment_status
|
405
424
|
@properties['assignment_status']
|
406
425
|
end
|
407
|
-
|
426
|
+
|
408
427
|
def attributes
|
409
428
|
@properties['attributes']
|
410
429
|
end
|
411
|
-
|
430
|
+
|
431
|
+
def addons
|
432
|
+
@properties['addons']
|
433
|
+
end
|
434
|
+
|
412
435
|
def date_created
|
413
436
|
@properties['date_created']
|
414
437
|
end
|
415
|
-
|
438
|
+
|
416
439
|
def date_updated
|
417
440
|
@properties['date_updated']
|
418
441
|
end
|
419
|
-
|
442
|
+
|
420
443
|
def priority
|
421
444
|
@properties['priority']
|
422
445
|
end
|
423
|
-
|
446
|
+
|
424
447
|
def reason
|
425
448
|
@properties['reason']
|
426
449
|
end
|
427
|
-
|
450
|
+
|
428
451
|
def sid
|
429
452
|
@properties['sid']
|
430
453
|
end
|
431
|
-
|
454
|
+
|
432
455
|
def task_queue_sid
|
433
456
|
@properties['task_queue_sid']
|
434
457
|
end
|
435
|
-
|
458
|
+
|
459
|
+
def task_queue_friendly_name
|
460
|
+
@properties['task_queue_friendly_name']
|
461
|
+
end
|
462
|
+
|
436
463
|
def task_channel_sid
|
437
464
|
@properties['task_channel_sid']
|
438
465
|
end
|
439
|
-
|
466
|
+
|
440
467
|
def task_channel_unique_name
|
441
468
|
@properties['task_channel_unique_name']
|
442
469
|
end
|
443
|
-
|
470
|
+
|
444
471
|
def timeout
|
445
472
|
@properties['timeout']
|
446
473
|
end
|
447
|
-
|
474
|
+
|
448
475
|
def workflow_sid
|
449
476
|
@properties['workflow_sid']
|
450
477
|
end
|
451
|
-
|
478
|
+
|
479
|
+
def workflow_friendly_name
|
480
|
+
@properties['workflow_friendly_name']
|
481
|
+
end
|
482
|
+
|
452
483
|
def workspace_sid
|
453
484
|
@properties['workspace_sid']
|
454
485
|
end
|
455
|
-
|
486
|
+
|
487
|
+
def url
|
488
|
+
@properties['url']
|
489
|
+
end
|
490
|
+
|
491
|
+
def links
|
492
|
+
@properties['links']
|
493
|
+
end
|
494
|
+
|
456
495
|
##
|
457
496
|
# Fetch a TaskInstance
|
458
497
|
# @return [TaskInstance] Fetched TaskInstance
|
459
498
|
def fetch
|
460
499
|
context.fetch
|
461
500
|
end
|
462
|
-
|
501
|
+
|
463
502
|
##
|
464
503
|
# Update the TaskInstance
|
465
504
|
# @param [String] attributes The attributes
|
@@ -477,21 +516,21 @@ module Twilio
|
|
477
516
|
task_channel: task_channel,
|
478
517
|
)
|
479
518
|
end
|
480
|
-
|
519
|
+
|
481
520
|
##
|
482
521
|
# Deletes the TaskInstance
|
483
522
|
# @return [Boolean] true if delete succeeds, true otherwise
|
484
523
|
def delete
|
485
524
|
context.delete
|
486
525
|
end
|
487
|
-
|
526
|
+
|
488
527
|
##
|
489
528
|
# Access the reservations
|
490
529
|
# @return [reservations] reservations
|
491
530
|
def reservations
|
492
531
|
context.reservations
|
493
532
|
end
|
494
|
-
|
533
|
+
|
495
534
|
##
|
496
535
|
# Provide a user friendly representation
|
497
536
|
def to_s
|