twilio-ruby 5.0.0.alpha1 → 5.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +11 -2
- data/AUTHORS.md +32 -46
- data/CHANGES.md +1 -124
- data/Gemfile +2 -2
- data/LICENSE.md +12 -12
- data/Makefile +2 -15
- data/README.md +37 -29
- data/Rakefile +0 -54
- data/examples/examples.rb +57 -46
- data/examples/{print_call_log.rb → print-call-log.rb} +7 -7
- data/lib/rack/twilio_webhook_authentication.rb +6 -5
- data/lib/twilio-ruby.rb +16 -17
- data/lib/twilio-ruby/compatibility/v2010/account/call/feedback.rb +15 -0
- data/lib/twilio-ruby/compatibility/v2010/account/queue/member.rb +23 -0
- data/lib/twilio-ruby/framework/domain.rb +2 -2
- data/lib/twilio-ruby/framework/exception.rb +14 -0
- data/lib/twilio-ruby/framework/helper.rb +1 -1
- data/lib/twilio-ruby/framework/page.rb +30 -28
- data/lib/twilio-ruby/framework/resource.rb +2 -2
- data/lib/twilio-ruby/framework/serialize.rb +7 -58
- data/lib/twilio-ruby/framework/twilio_response.rb +1 -1
- data/lib/twilio-ruby/framework/version.rb +48 -43
- data/lib/twilio-ruby/http/http_client.rb +8 -8
- data/lib/twilio-ruby/rest/api.rb +33 -141
- data/lib/twilio-ruby/rest/api/v2010.rb +31 -50
- data/lib/twilio-ruby/rest/api/v2010/account.rb +239 -389
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +122 -145
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +56 -76
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +127 -144
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +83 -85
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +97 -92
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +77 -142
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +77 -142
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +77 -142
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +184 -232
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +84 -73
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +80 -85
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +115 -126
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +99 -114
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +112 -150
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +109 -228
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +98 -101
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +164 -287
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +90 -152
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +90 -152
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +90 -152
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +138 -195
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +100 -90
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +106 -118
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +105 -96
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +117 -119
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +95 -84
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +103 -194
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +93 -100
- data/lib/twilio-ruby/rest/api/v2010/account/sandbox.rb +304 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +30 -42
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +113 -111
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +115 -104
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +133 -159
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +96 -94
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +96 -94
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +114 -111
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +113 -108
- data/lib/twilio-ruby/rest/api/v2010/account/sms.rb +140 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sms/short_code.rb +431 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sms/sms_message.rb +467 -0
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +34 -41
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +90 -98
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +24 -21
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +118 -139
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +62 -106
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +124 -130
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +31 -35
- data/lib/twilio-ruby/rest/client.rb +88 -249
- data/lib/twilio-ruby/rest/{accounts.rb → conversations.rb} +14 -16
- data/lib/twilio-ruby/rest/conversations/v1.rb +35 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +270 -0
- data/lib/twilio-ruby/rest/{notify/v1/service/segment.rb → conversations/v1/conversation/completed.rb} +101 -101
- data/lib/twilio-ruby/rest/{preview/bulk_exports/export/day.rb → conversations/v1/conversation/in_progress.rb} +109 -95
- data/lib/twilio-ruby/rest/{messaging/v1/service/phone_number.rb → conversations/v1/conversation/participant.rb} +171 -178
- data/lib/twilio-ruby/rest/ip_messaging.rb +11 -26
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +7 -19
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +112 -113
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +131 -542
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +132 -194
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +103 -159
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +102 -183
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +112 -107
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +113 -186
- data/lib/twilio-ruby/rest/lookups.rb +8 -12
- data/lib/twilio-ruby/rest/lookups/v1.rb +7 -13
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +54 -71
- data/lib/twilio-ruby/rest/monitor.rb +11 -19
- data/lib/twilio-ruby/rest/monitor/v1.rb +7 -19
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +133 -121
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +127 -116
- data/lib/twilio-ruby/rest/pricing.rb +11 -17
- data/lib/twilio-ruby/rest/pricing/v1.rb +9 -21
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +23 -27
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +74 -71
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +23 -27
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +79 -69
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +27 -33
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +74 -71
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +52 -47
- data/lib/twilio-ruby/rest/taskrouter.rb +8 -12
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +5 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +153 -260
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +114 -115
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +101 -105
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +139 -216
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +106 -194
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +145 -187
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +65 -57
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +57 -62
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +135 -217
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +60 -54
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +56 -52
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +123 -140
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +61 -57
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +72 -52
- data/lib/twilio-ruby/rest/trunking.rb +8 -12
- data/lib/twilio-ruby/rest/trunking/v1.rb +5 -11
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +134 -157
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +93 -89
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +93 -89
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +111 -114
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +112 -146
- data/lib/twilio-ruby/task_router.rb +0 -0
- data/lib/twilio-ruby/task_router/capability.rb +87 -0
- data/lib/twilio-ruby/twiml/response.rb +16 -0
- data/lib/twilio-ruby/util.rb +1 -1
- data/lib/twilio-ruby/util/access_token.rb +70 -0
- data/lib/twilio-ruby/util/capability.rb +64 -0
- data/lib/twilio-ruby/util/client_config.rb +29 -0
- data/lib/twilio-ruby/{security → util}/request_validator.rb +4 -21
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/holodeck/holodeck.rb +6 -6
- data/spec/holodeck/hologram.rb +1 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +8 -8
- data/spec/integration/api/v2010/account/address_spec.rb +29 -37
- data/spec/integration/api/v2010/account/application_spec.rb +29 -29
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +13 -13
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +8 -9
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +8 -9
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +8 -9
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +13 -13
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +17 -17
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +19 -19
- data/spec/integration/api/v2010/account/call/notification_spec.rb +18 -18
- data/spec/integration/api/v2010/account/call/recording_spec.rb +20 -32
- data/spec/integration/api/v2010/account/call_spec.rb +29 -29
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +35 -107
- data/spec/integration/api/v2010/account/conference_spec.rb +19 -58
- data/spec/integration/api/v2010/account/connect_app_spec.rb +18 -18
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +14 -16
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +14 -16
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +14 -16
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +29 -41
- data/spec/integration/api/v2010/account/message/media_spec.rb +18 -18
- data/spec/integration/api/v2010/account/message_spec.rb +35 -41
- data/spec/integration/api/v2010/account/notification_spec.rb +18 -18
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +23 -23
- data/spec/integration/api/v2010/account/queue/member_spec.rb +18 -18
- data/spec/integration/api/v2010/account/queue_spec.rb +32 -35
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +18 -18
- data/spec/integration/api/v2010/account/recording_spec.rb +21 -42
- data/spec/integration/api/v2010/account/sandbox_spec.rb +99 -0
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +36 -32
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +29 -29
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +24 -24
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +29 -29
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +36 -32
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +29 -29
- data/spec/integration/api/v2010/account/sip_spec.rb +1 -1
- data/spec/integration/api/v2010/account/{short_code_spec.rb → sms/short_code_spec.rb} +25 -18
- data/spec/integration/api/v2010/account/sms/sms_message_spec.rb +275 -0
- data/spec/integration/{accounts/v1/credential_spec.rb → api/v2010/account/sms_spec.rb} +2 -2
- data/spec/integration/api/v2010/account/token_spec.rb +7 -7
- data/spec/integration/api/v2010/account/transcription_spec.rb +18 -18
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/record_spec.rb +8 -8
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +32 -32
- data/spec/integration/api/v2010/account/usage_spec.rb +1 -1
- data/spec/integration/api/v2010/account/validation_request_spec.rb +4 -24
- data/spec/integration/api/v2010/account_spec.rb +28 -24
- data/spec/integration/conversations/v1/conversation/completed_spec.rb +89 -0
- data/spec/integration/conversations/v1/conversation/in_progress_spec.rb +89 -0
- data/spec/integration/conversations/v1/conversation/participant_spec.rb +174 -0
- data/spec/integration/conversations/v1/conversation_spec.rb +49 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +24 -155
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +13 -217
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +10 -241
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +23 -205
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +19 -184
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +24 -194
- data/spec/integration/ip_messaging/v1/service_spec.rb +17 -229
- data/spec/integration/lookups/v1/phone_number_spec.rb +6 -17
- data/spec/integration/monitor/v1/alert_spec.rb +60 -60
- data/spec/integration/monitor/v1/event_spec.rb +13 -13
- data/spec/integration/pricing/v1/messaging/country_spec.rb +7 -103
- data/spec/integration/pricing/v1/messaging_spec.rb +1 -1
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +13 -13
- data/spec/integration/pricing/v1/phone_number_spec.rb +1 -1
- data/spec/integration/pricing/v1/voice/country_spec.rb +13 -13
- data/spec/integration/pricing/v1/voice/number_spec.rb +6 -6
- data/spec/integration/pricing/v1/voice_spec.rb +1 -1
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +38 -34
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +13 -13
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +24 -21
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +11 -13
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +17 -18
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +41 -57
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +50 -113
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +6 -7
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +6 -7
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +68 -96
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +12 -14
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +43 -54
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +9 -11
- data/spec/integration/taskrouter/v1/workspace_spec.rb +51 -71
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +24 -24
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +66 -66
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +28 -28
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +23 -23
- data/spec/integration/trunking/v1/trunk_spec.rb +28 -28
- data/spec/rack/twilio_webhook_authentication_spec.rb +23 -19
- data/spec/spec_helper.rb +2 -2
- data/spec/support/fakeweb.rb +1 -1
- data/spec/task_router_spec.rb +114 -0
- data/spec/util/access_token_spec.rb +103 -0
- data/spec/util/capability_spec.rb +186 -0
- data/spec/util/client_config_spec.rb +21 -0
- data/spec/{security → util}/request_validator_spec.rb +5 -5
- data/twilio-ruby.gemspec +8 -12
- metadata +90 -416
- data/.rubocop.yml +0 -21
- data/.rubocop_todo.yml +0 -187
- data/VERSIONS.md +0 -64
- data/lib/twilio-ruby/framework/error.rb +0 -30
- data/lib/twilio-ruby/framework/values.rb +0 -7
- data/lib/twilio-ruby/jwt/access_token.rb +0 -232
- data/lib/twilio-ruby/jwt/client_capability.rb +0 -102
- data/lib/twilio-ruby/jwt/jwt.rb +0 -50
- data/lib/twilio-ruby/jwt/task_router.rb +0 -174
- data/lib/twilio-ruby/rest/accounts/v1.rb +0 -39
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +0 -105
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +0 -370
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +0 -431
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +0 -350
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +0 -336
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +0 -165
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +0 -153
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +0 -153
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +0 -397
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +0 -378
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +0 -430
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +0 -336
- data/lib/twilio-ruby/rest/chat.rb +0 -59
- data/lib/twilio-ruby/rest/chat/v1.rb +0 -56
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +0 -403
- data/lib/twilio-ruby/rest/chat/v1/service.rb +0 -935
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +0 -554
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +0 -431
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +0 -447
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +0 -396
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +0 -467
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/chat/v2.rb +0 -56
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +0 -403
- data/lib/twilio-ruby/rest/chat/v2/service.rb +0 -688
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +0 -554
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +0 -431
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +0 -447
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +0 -396
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +0 -467
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/fax.rb +0 -44
- data/lib/twilio-ruby/rest/fax/v1.rb +0 -41
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -541
- data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -326
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +0 -56
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +0 -403
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +0 -688
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +0 -554
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +0 -386
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +0 -431
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +0 -447
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +0 -396
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +0 -467
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +0 -244
- data/lib/twilio-ruby/rest/messaging.rb +0 -44
- data/lib/twilio-ruby/rest/messaging/v1.rb +0 -41
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +0 -637
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +0 -352
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +0 -359
- data/lib/twilio-ruby/rest/notify.rb +0 -52
- data/lib/twilio-ruby/rest/notify/v1.rb +0 -56
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +0 -403
- data/lib/twilio-ruby/rest/notify/v1/service.rb +0 -639
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +0 -430
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +0 -288
- data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -445
- data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -254
- data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -434
- data/lib/twilio-ruby/rest/preview.rb +0 -145
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -56
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -203
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -243
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +0 -42
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +0 -557
- data/lib/twilio-ruby/rest/preview/marketplace.rb +0 -58
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +0 -333
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +0 -301
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +0 -440
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +0 -341
- data/lib/twilio-ruby/rest/preview/proxy.rb +0 -41
- data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -500
- data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +0 -359
- data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -536
- data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -429
- data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +0 -506
- data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +0 -452
- data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +0 -359
- data/lib/twilio-ruby/rest/preview/sync.rb +0 -41
- data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -504
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -445
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -395
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -438
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -430
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -395
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -438
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -432
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -395
- data/lib/twilio-ruby/rest/preview/wireless.rb +0 -71
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +0 -382
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +0 -435
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +0 -544
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +0 -236
- data/lib/twilio-ruby/rest/sync.rb +0 -44
- data/lib/twilio-ruby/rest/sync/v1.rb +0 -41
- data/lib/twilio-ruby/rest/sync/v1/service.rb +0 -504
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +0 -445
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +0 -395
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +0 -438
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +0 -430
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +0 -395
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +0 -438
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +0 -432
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +0 -395
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +0 -315
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +0 -461
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +0 -406
- data/lib/twilio-ruby/rest/video.rb +0 -52
- data/lib/twilio-ruby/rest/video/v1.rb +0 -56
- data/lib/twilio-ruby/rest/video/v1/recording.rb +0 -382
- data/lib/twilio-ruby/rest/video/v1/room.rb +0 -485
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -381
- data/lib/twilio-ruby/rest/wireless.rb +0 -60
- data/lib/twilio-ruby/rest/wireless/v1.rb +0 -71
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +0 -367
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +0 -452
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +0 -548
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +0 -235
- data/lib/twilio-ruby/twiml/messaging_response.rb +0 -141
- data/lib/twilio-ruby/twiml/twiml.rb +0 -69
- data/lib/twilio-ruby/twiml/voice_response.rb +0 -916
- data/spec/framework/serialize_spec.rb +0 -59
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +0 -226
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -135
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
- data/spec/integration/api/v2010/account/key_spec.rb +0 -178
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +0 -48
- data/spec/integration/api/v2010/account/new_key_spec.rb +0 -45
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +0 -45
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +0 -175
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +0 -166
- data/spec/integration/api/v2010/account/signing_key_spec.rb +0 -178
- data/spec/integration/chat/v1/credential_spec.rb +0 -223
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +0 -210
- data/spec/integration/chat/v1/service/channel/member_spec.rb +0 -284
- data/spec/integration/chat/v1/service/channel/message_spec.rb +0 -294
- data/spec/integration/chat/v1/service/channel_spec.rb +0 -275
- data/spec/integration/chat/v1/service/role_spec.rb +0 -263
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/chat/v1/service/user_spec.rb +0 -266
- data/spec/integration/chat/v1/service_spec.rb +0 -299
- data/spec/integration/chat/v2/credential_spec.rb +0 -223
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +0 -210
- data/spec/integration/chat/v2/service/channel/member_spec.rb +0 -284
- data/spec/integration/chat/v2/service/channel/message_spec.rb +0 -294
- data/spec/integration/chat/v2/service/channel_spec.rb +0 -275
- data/spec/integration/chat/v2/service/role_spec.rb +0 -263
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/chat/v2/service/user_spec.rb +0 -266
- data/spec/integration/chat/v2/service_spec.rb +0 -325
- data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -126
- data/spec/integration/fax/v1/fax_spec.rb +0 -272
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +0 -210
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/ip_messaging/v2/credential_spec.rb +0 -223
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +0 -210
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +0 -284
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +0 -294
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +0 -275
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +0 -263
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +0 -92
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +0 -266
- data/spec/integration/ip_messaging/v2/service_spec.rb +0 -325
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
- data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
- data/spec/integration/messaging/v1/service_spec.rb +0 -263
- data/spec/integration/notify/v1/credential_spec.rb +0 -223
- data/spec/integration/notify/v1/service/binding_spec.rb +0 -227
- data/spec/integration/notify/v1/service/notification_spec.rb +0 -97
- data/spec/integration/notify/v1/service/segment_spec.rb +0 -84
- data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -118
- data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -269
- data/spec/integration/notify/v1/service/user_spec.rb +0 -213
- data/spec/integration/notify/v1/service_spec.rb +0 -280
- data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -56
- data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
- data/spec/integration/preview/bulk_exports/export_spec.rb +0 -43
- data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -280
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -121
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -142
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -252
- data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -173
- data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -104
- data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -164
- data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -226
- data/spec/integration/preview/proxy/service/session_spec.rb +0 -216
- data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -173
- data/spec/integration/preview/proxy/service_spec.rb +0 -200
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -206
- data/spec/integration/preview/sync/service/document_spec.rb +0 -254
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -256
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -206
- data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -207
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -257
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -206
- data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -207
- data/spec/integration/preview/sync/service_spec.rb +0 -244
- data/spec/integration/preview/wireless/command_spec.rb +0 -169
- data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -260
- data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -49
- data/spec/integration/preview/wireless/sim_spec.rb +0 -208
- data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -206
- data/spec/integration/sync/v1/service/document_spec.rb +0 -254
- data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -256
- data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -206
- data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -207
- data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
- data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -206
- data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -207
- data/spec/integration/sync/v1/service_spec.rb +0 -244
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +0 -127
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +0 -192
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +0 -201
- data/spec/integration/video/v1/recording_spec.rb +0 -165
- data/spec/integration/video/v1/room/recording_spec.rb +0 -146
- data/spec/integration/video/v1/room_spec.rb +0 -237
- data/spec/integration/wireless/v1/command_spec.rb +0 -166
- data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -268
- data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -65
- data/spec/integration/wireless/v1/sim_spec.rb +0 -208
- data/spec/jwt/access_token_spec.rb +0 -130
- data/spec/jwt/client_capability_spec.rb +0 -104
- data/spec/jwt/task_router_spec.rb +0 -172
- data/spec/twiml/messaging_response_spec.rb +0 -90
- data/spec/twiml/voice_response_spec.rb +0 -474
@@ -2,7 +2,7 @@
|
|
2
2
|
# This code was generated by
|
3
3
|
# \ / _ _ _| _ _
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
-
# / /
|
5
|
+
# / /
|
6
6
|
|
7
7
|
module Twilio
|
8
8
|
module REST
|
@@ -18,10 +18,11 @@ module Twilio
|
|
18
18
|
# media.
|
19
19
|
# @param [String] message_sid A 34 character string that uniquely identifies this
|
20
20
|
# resource.
|
21
|
+
|
21
22
|
# @return [MediaList] MediaList
|
22
23
|
def initialize(version, account_sid: nil, message_sid: nil)
|
23
24
|
super(version)
|
24
|
-
|
25
|
+
|
25
26
|
# Path Solution
|
26
27
|
@solution = {
|
27
28
|
account_sid: account_sid,
|
@@ -29,22 +30,23 @@ module Twilio
|
|
29
30
|
}
|
30
31
|
@uri = "/Accounts/#{@solution[:account_sid]}/Messages/#{@solution[:message_sid]}/Media.json"
|
31
32
|
end
|
32
|
-
|
33
|
+
|
33
34
|
##
|
34
35
|
# Lists MediaInstance records from the API as a list.
|
35
36
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
36
37
|
# memory before returning.
|
37
38
|
# @param [Time] date_created_before Filter by date created
|
38
39
|
# @param [Time] date_created Filter by date created
|
39
|
-
# @param [Time] date_created_after Filter by date created
|
40
|
+
# @param [Time] date_created_after: Filter by date created
|
40
41
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
41
42
|
# guarantees to never return more than limit. Default is no limit
|
42
43
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
43
44
|
# the default value of 50 records. If no page_size is defined
|
44
45
|
# but a limit is defined, stream() will attempt to read the
|
45
46
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
47
|
+
|
46
48
|
# @return [Array] Array of up to limit results
|
47
|
-
def list(date_created_before:
|
49
|
+
def list(date_created_before: nil, date_created: nil, date_created_after: nil, limit: nil, page_size: nil)
|
48
50
|
self.stream(
|
49
51
|
date_created_before: date_created_before,
|
50
52
|
date_created: date_created,
|
@@ -53,131 +55,149 @@ module Twilio
|
|
53
55
|
page_size: page_size
|
54
56
|
).entries
|
55
57
|
end
|
56
|
-
|
58
|
+
|
57
59
|
##
|
58
60
|
# Streams MediaInstance records from the API as an Enumerable.
|
59
61
|
# This operation lazily loads records as efficiently as possible until the limit
|
60
62
|
# is reached.
|
61
63
|
# @param [Time] date_created_before Filter by date created
|
62
64
|
# @param [Time] date_created Filter by date created
|
63
|
-
# @param [Time] date_created_after Filter by date created
|
65
|
+
# @param [Time] date_created_after: Filter by date created
|
64
66
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
65
67
|
# guarantees to never return more than limit. Default is no limit
|
66
68
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
67
69
|
# the default value of 50 records. If no page_size is defined
|
68
70
|
# but a limit is defined, stream() will attempt to read the
|
69
71
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
72
|
+
|
70
73
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
71
|
-
def stream(date_created_before:
|
74
|
+
def stream(date_created_before: nil, date_created: nil, date_created_after: nil, limit: nil, page_size: nil)
|
72
75
|
limits = @version.read_limits(limit, page_size)
|
73
|
-
|
76
|
+
|
74
77
|
page = self.page(
|
75
78
|
date_created_before: date_created_before,
|
76
79
|
date_created: date_created,
|
77
80
|
date_created_after: date_created_after,
|
78
|
-
page_size: limits[
|
81
|
+
page_size: limits['page_size'],
|
79
82
|
)
|
80
|
-
|
81
|
-
@version.stream(page, limit: limits[
|
83
|
+
|
84
|
+
@version.stream(page, limit: limits['limit'], page_limit: limits['page_limit'])
|
82
85
|
end
|
83
|
-
|
86
|
+
|
84
87
|
##
|
85
88
|
# When passed a block, yields MediaInstance records from the API.
|
86
89
|
# This operation lazily loads records as efficiently as possible until the limit
|
87
90
|
# is reached.
|
91
|
+
# @param [Time] date_created_before Filter by date created
|
92
|
+
# @param [Time] date_created Filter by date created
|
93
|
+
# @param [Time] date_created_after: Filter by date created
|
94
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
95
|
+
# guarantees to never return more than limit. Default is no limit
|
96
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
97
|
+
# the default value of 50 records. If no page_size is defined
|
98
|
+
# but a limit is defined, stream() will attempt to read the
|
99
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
88
100
|
def each
|
89
101
|
limits = @version.read_limits
|
90
|
-
|
102
|
+
|
91
103
|
page = self.page(
|
92
|
-
page_size: limits[
|
104
|
+
page_size: limits['page_size'],
|
93
105
|
)
|
94
|
-
|
106
|
+
|
95
107
|
@version.stream(page,
|
96
|
-
limit: limits[
|
97
|
-
page_limit: limits[
|
108
|
+
limit: limits['limit'],
|
109
|
+
page_limit: limits['page_limit']).each {|x| yield x}
|
98
110
|
end
|
99
|
-
|
111
|
+
|
100
112
|
##
|
101
113
|
# Retrieve a single page of MediaInstance records from the API.
|
102
114
|
# Request is executed immediately.
|
103
115
|
# @param [Time] date_created_before Filter by date created
|
104
116
|
# @param [Time] date_created Filter by date created
|
105
|
-
# @param [Time] date_created_after Filter by date created
|
117
|
+
# @param [Time] date_created_after: Filter by date created
|
106
118
|
# @param [String] page_token PageToken provided by the API
|
107
119
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
108
120
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
121
|
+
|
109
122
|
# @return [Page] Page of MediaInstance
|
110
|
-
def page(date_created_before:
|
111
|
-
params =
|
112
|
-
'DateCreated<' => Twilio.
|
113
|
-
'DateCreated' => Twilio.
|
114
|
-
'DateCreated>' => Twilio.
|
123
|
+
def page(date_created_before: nil, date_created: nil, date_created_after: nil, page_token: nil, page_number: nil, page_size: nil)
|
124
|
+
params = {
|
125
|
+
'DateCreated<' => Twilio.serialize_iso8601(date_created_before),
|
126
|
+
'DateCreated' => Twilio.serialize_iso8601(date_created),
|
127
|
+
'DateCreated>' => Twilio.serialize_iso8601(date_created_after),
|
115
128
|
'PageToken' => page_token,
|
116
129
|
'Page' => page_number,
|
117
130
|
'PageSize' => page_size,
|
118
|
-
}
|
131
|
+
}
|
119
132
|
response = @version.page(
|
120
133
|
'GET',
|
121
134
|
@uri,
|
122
135
|
params
|
123
136
|
)
|
124
|
-
MediaPage.new(@version, response, @solution)
|
137
|
+
return MediaPage.new(@version, response, @solution)
|
125
138
|
end
|
126
|
-
|
139
|
+
|
127
140
|
##
|
128
|
-
#
|
129
|
-
#
|
130
|
-
|
131
|
-
# @return [
|
132
|
-
def
|
133
|
-
|
134
|
-
|
135
|
-
|
141
|
+
# Constructs a MediaContext
|
142
|
+
# @param [String] sid The media Sid that uniquely identifies this resource
|
143
|
+
|
144
|
+
# @return [MediaContext] MediaContext
|
145
|
+
def get(sid)
|
146
|
+
MediaContext.new(
|
147
|
+
@version,
|
148
|
+
account_sid: @solution[:account_sid],
|
149
|
+
message_sid: @solution[:message_sid],
|
150
|
+
sid: sid,
|
136
151
|
)
|
137
|
-
MediaPage.new(@version, response, @solution)
|
138
152
|
end
|
139
|
-
|
153
|
+
|
140
154
|
##
|
141
155
|
# Provide a user friendly representation
|
142
156
|
def to_s
|
143
157
|
'#<Twilio.Api.V2010.MediaList>'
|
144
158
|
end
|
145
159
|
end
|
146
|
-
|
160
|
+
|
147
161
|
class MediaPage < Page
|
148
162
|
##
|
149
163
|
# Initialize the MediaPage
|
150
164
|
# @param [Version] version Version that contains the resource
|
151
165
|
# @param [Response] response Response from the API
|
152
166
|
# @param [Hash] solution Path solution for the resource
|
167
|
+
# @param [String] account_sid The unique id of the Account responsible for this
|
168
|
+
# media.
|
169
|
+
# @param [String] message_sid A 34 character string that uniquely identifies this
|
170
|
+
# resource.
|
171
|
+
|
153
172
|
# @return [MediaPage] MediaPage
|
154
173
|
def initialize(version, response, solution)
|
155
174
|
super(version, response)
|
156
|
-
|
175
|
+
|
157
176
|
# Path Solution
|
158
177
|
@solution = solution
|
159
178
|
end
|
160
|
-
|
179
|
+
|
161
180
|
##
|
162
181
|
# Build an instance of MediaInstance
|
163
182
|
# @param [Hash] payload Payload response from the API
|
183
|
+
|
164
184
|
# @return [MediaInstance] MediaInstance
|
165
185
|
def get_instance(payload)
|
166
|
-
MediaInstance.new(
|
186
|
+
return MediaInstance.new(
|
167
187
|
@version,
|
168
188
|
payload,
|
169
|
-
account_sid: @solution[
|
170
|
-
message_sid: @solution[
|
189
|
+
account_sid: @solution['account_sid'],
|
190
|
+
message_sid: @solution['message_sid'],
|
171
191
|
)
|
172
192
|
end
|
173
|
-
|
193
|
+
|
174
194
|
##
|
175
195
|
# Provide a user friendly representation
|
176
196
|
def to_s
|
177
197
|
'<Twilio.Api.V2010.MediaPage>'
|
178
198
|
end
|
179
199
|
end
|
180
|
-
|
200
|
+
|
181
201
|
class MediaContext < InstanceContext
|
182
202
|
##
|
183
203
|
# Initialize the MediaContext
|
@@ -185,10 +205,11 @@ module Twilio
|
|
185
205
|
# @param [String] account_sid The account_sid
|
186
206
|
# @param [String] message_sid The message_sid
|
187
207
|
# @param [String] sid The media Sid that uniquely identifies this resource
|
208
|
+
|
188
209
|
# @return [MediaContext] MediaContext
|
189
210
|
def initialize(version, account_sid, message_sid, sid)
|
190
211
|
super(version)
|
191
|
-
|
212
|
+
|
192
213
|
# Path Solution
|
193
214
|
@solution = {
|
194
215
|
account_sid: account_sid,
|
@@ -197,35 +218,35 @@ module Twilio
|
|
197
218
|
}
|
198
219
|
@uri = "/Accounts/#{@solution[:account_sid]}/Messages/#{@solution[:message_sid]}/Media/#{@solution[:sid]}.json"
|
199
220
|
end
|
200
|
-
|
221
|
+
|
201
222
|
##
|
202
223
|
# Deletes the MediaInstance
|
203
224
|
# @return [Boolean] true if delete succeeds, true otherwise
|
204
225
|
def delete
|
205
|
-
@version.delete('delete', @uri)
|
226
|
+
return @version.delete('delete', @uri)
|
206
227
|
end
|
207
|
-
|
228
|
+
|
208
229
|
##
|
209
230
|
# Fetch a MediaInstance
|
210
231
|
# @return [MediaInstance] Fetched MediaInstance
|
211
232
|
def fetch
|
212
|
-
params =
|
213
|
-
|
233
|
+
params = {}
|
234
|
+
|
214
235
|
payload = @version.fetch(
|
215
236
|
'GET',
|
216
237
|
@uri,
|
217
238
|
params,
|
218
239
|
)
|
219
|
-
|
220
|
-
MediaInstance.new(
|
240
|
+
|
241
|
+
return MediaInstance.new(
|
221
242
|
@version,
|
222
243
|
payload,
|
223
|
-
account_sid: @solution[
|
224
|
-
message_sid: @solution[
|
225
|
-
sid: @solution[
|
244
|
+
account_sid: @solution['account_sid'],
|
245
|
+
message_sid: @solution['message_sid'],
|
246
|
+
sid: @solution['sid'],
|
226
247
|
)
|
227
248
|
end
|
228
|
-
|
249
|
+
|
229
250
|
##
|
230
251
|
# Provide a user friendly representation
|
231
252
|
def to_s
|
@@ -233,7 +254,7 @@ module Twilio
|
|
233
254
|
"#<Twilio.Api.V2010.MediaContext #{context}>"
|
234
255
|
end
|
235
256
|
end
|
236
|
-
|
257
|
+
|
237
258
|
class MediaInstance < InstanceResource
|
238
259
|
##
|
239
260
|
# Initialize the MediaInstance
|
@@ -244,10 +265,11 @@ module Twilio
|
|
244
265
|
# @param [String] message_sid A 34 character string that uniquely identifies this
|
245
266
|
# resource.
|
246
267
|
# @param [String] sid The media Sid that uniquely identifies this resource
|
268
|
+
|
247
269
|
# @return [MediaInstance] MediaInstance
|
248
270
|
def initialize(version, payload, account_sid: nil, message_sid: nil, sid: nil)
|
249
271
|
super(version)
|
250
|
-
|
272
|
+
|
251
273
|
# Marshaled Properties
|
252
274
|
@properties = {
|
253
275
|
'account_sid' => payload['account_sid'],
|
@@ -258,7 +280,7 @@ module Twilio
|
|
258
280
|
'sid' => payload['sid'],
|
259
281
|
'uri' => payload['uri'],
|
260
282
|
}
|
261
|
-
|
283
|
+
|
262
284
|
# Context
|
263
285
|
@instance_context = nil
|
264
286
|
@params = {
|
@@ -267,10 +289,12 @@ module Twilio
|
|
267
289
|
'sid' => sid || @properties['sid'],
|
268
290
|
}
|
269
291
|
end
|
270
|
-
|
292
|
+
|
271
293
|
##
|
272
294
|
# Generate an instance context for the instance, the context is capable of
|
273
295
|
# performing various actions. All instance actions are proxied to the context
|
296
|
+
# @param [Version] version Version that contains the resource
|
297
|
+
|
274
298
|
# @return [MediaContext] MediaContext for this MediaInstance
|
275
299
|
def context
|
276
300
|
unless @instance_context
|
@@ -283,68 +307,54 @@ module Twilio
|
|
283
307
|
end
|
284
308
|
@instance_context
|
285
309
|
end
|
286
|
-
|
287
|
-
##
|
288
|
-
# @return [String] The unique sid that identifies this account
|
310
|
+
|
289
311
|
def account_sid
|
290
312
|
@properties['account_sid']
|
291
313
|
end
|
292
|
-
|
293
|
-
##
|
294
|
-
# @return [String] The default mime-type of the media
|
314
|
+
|
295
315
|
def content_type
|
296
316
|
@properties['content_type']
|
297
317
|
end
|
298
|
-
|
299
|
-
##
|
300
|
-
# @return [Time] The date this resource was created
|
318
|
+
|
301
319
|
def date_created
|
302
320
|
@properties['date_created']
|
303
321
|
end
|
304
|
-
|
305
|
-
##
|
306
|
-
# @return [Time] The date this resource was last updated
|
322
|
+
|
307
323
|
def date_updated
|
308
324
|
@properties['date_updated']
|
309
325
|
end
|
310
|
-
|
311
|
-
##
|
312
|
-
# @return [String] The unique id of the resource that created the media.
|
326
|
+
|
313
327
|
def parent_sid
|
314
328
|
@properties['parent_sid']
|
315
329
|
end
|
316
|
-
|
317
|
-
##
|
318
|
-
# @return [String] A string that uniquely identifies this media
|
330
|
+
|
319
331
|
def sid
|
320
332
|
@properties['sid']
|
321
333
|
end
|
322
|
-
|
323
|
-
##
|
324
|
-
# @return [String] The URI for this resource
|
334
|
+
|
325
335
|
def uri
|
326
336
|
@properties['uri']
|
327
337
|
end
|
328
|
-
|
338
|
+
|
329
339
|
##
|
330
340
|
# Deletes the MediaInstance
|
331
341
|
# @return [Boolean] true if delete succeeds, true otherwise
|
332
342
|
def delete
|
333
|
-
context.delete
|
343
|
+
@context.delete()
|
334
344
|
end
|
335
|
-
|
345
|
+
|
336
346
|
##
|
337
347
|
# Fetch a MediaInstance
|
338
348
|
# @return [MediaInstance] Fetched MediaInstance
|
339
349
|
def fetch
|
340
|
-
context.fetch
|
350
|
+
@context.fetch()
|
341
351
|
end
|
342
|
-
|
352
|
+
|
343
353
|
##
|
344
354
|
# Provide a user friendly representation
|
345
355
|
def to_s
|
346
|
-
|
347
|
-
"<Twilio.Api.V2010.MediaInstance #{
|
356
|
+
context = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
357
|
+
"<Twilio.Api.V2010.MediaInstance #{context}>"
|
348
358
|
end
|
349
359
|
end
|
350
360
|
end
|
@@ -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
|
@@ -15,17 +15,18 @@ module Twilio
|
|
15
15
|
# @param [Version] version Version that contains the resource
|
16
16
|
# @param [String] account_sid The unique id of the Account responsible for this
|
17
17
|
# notification.
|
18
|
+
|
18
19
|
# @return [NotificationList] NotificationList
|
19
20
|
def initialize(version, account_sid: nil)
|
20
21
|
super(version)
|
21
|
-
|
22
|
+
|
22
23
|
# Path Solution
|
23
24
|
@solution = {
|
24
25
|
account_sid: account_sid
|
25
26
|
}
|
26
27
|
@uri = "/Accounts/#{@solution[:account_sid]}/Notifications.json"
|
27
28
|
end
|
28
|
-
|
29
|
+
|
29
30
|
##
|
30
31
|
# Lists NotificationInstance records from the API as a list.
|
31
32
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
@@ -33,15 +34,16 @@ module Twilio
|
|
33
34
|
# @param [String] log Only show notifications for this log level
|
34
35
|
# @param [Time] message_date_before Filter by date
|
35
36
|
# @param [Time] message_date Filter by date
|
36
|
-
# @param [Time] message_date_after Filter by date
|
37
|
+
# @param [Time] message_date_after: Filter by date
|
37
38
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
38
39
|
# guarantees to never return more than limit. Default is no limit
|
39
40
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
40
41
|
# the default value of 50 records. If no page_size is defined
|
41
42
|
# but a limit is defined, stream() will attempt to read the
|
42
43
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
44
|
+
|
43
45
|
# @return [Array] Array of up to limit results
|
44
|
-
def list(log:
|
46
|
+
def list(log: nil, message_date_before: nil, message_date: nil, message_date_after: nil, limit: nil, page_size: nil)
|
45
47
|
self.stream(
|
46
48
|
log: log,
|
47
49
|
message_date_before: message_date_before,
|
@@ -51,7 +53,7 @@ module Twilio
|
|
51
53
|
page_size: page_size
|
52
54
|
).entries
|
53
55
|
end
|
54
|
-
|
56
|
+
|
55
57
|
##
|
56
58
|
# Streams NotificationInstance records from the API as an Enumerable.
|
57
59
|
# This operation lazily loads records as efficiently as possible until the limit
|
@@ -59,136 +61,153 @@ module Twilio
|
|
59
61
|
# @param [String] log Only show notifications for this log level
|
60
62
|
# @param [Time] message_date_before Filter by date
|
61
63
|
# @param [Time] message_date Filter by date
|
62
|
-
# @param [Time] message_date_after Filter by date
|
64
|
+
# @param [Time] message_date_after: Filter by date
|
63
65
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
64
66
|
# guarantees to never return more than limit. Default is no limit
|
65
67
|
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
66
68
|
# the default value of 50 records. If no page_size is defined
|
67
69
|
# but a limit is defined, stream() will attempt to read the
|
68
70
|
# limit with the most efficient page size, i.e. min(limit, 1000)
|
71
|
+
|
69
72
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
70
|
-
def stream(log:
|
73
|
+
def stream(log: nil, message_date_before: nil, message_date: nil, message_date_after: nil, limit: nil, page_size: nil)
|
71
74
|
limits = @version.read_limits(limit, page_size)
|
72
|
-
|
75
|
+
|
73
76
|
page = self.page(
|
74
77
|
log: log,
|
75
78
|
message_date_before: message_date_before,
|
76
79
|
message_date: message_date,
|
77
80
|
message_date_after: message_date_after,
|
78
|
-
page_size: limits[
|
81
|
+
page_size: limits['page_size'],
|
79
82
|
)
|
80
|
-
|
81
|
-
@version.stream(page, limit: limits[
|
83
|
+
|
84
|
+
@version.stream(page, limit: limits['limit'], page_limit: limits['page_limit'])
|
82
85
|
end
|
83
|
-
|
86
|
+
|
84
87
|
##
|
85
88
|
# When passed a block, yields NotificationInstance records from the API.
|
86
89
|
# This operation lazily loads records as efficiently as possible until the limit
|
87
90
|
# is reached.
|
91
|
+
# @param [String] log Only show notifications for this log level
|
92
|
+
# @param [Time] message_date_before Filter by date
|
93
|
+
# @param [Time] message_date Filter by date
|
94
|
+
# @param [Time] message_date_after: Filter by date
|
95
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
96
|
+
# guarantees to never return more than limit. Default is no limit
|
97
|
+
# @param [Integer] page_size Number of records to fetch per request, when not set will use
|
98
|
+
# the default value of 50 records. If no page_size is defined
|
99
|
+
# but a limit is defined, stream() will attempt to read the
|
100
|
+
# limit with the most efficient page size, i.e. min(limit, 1000)
|
88
101
|
def each
|
89
102
|
limits = @version.read_limits
|
90
|
-
|
103
|
+
|
91
104
|
page = self.page(
|
92
|
-
page_size: limits[
|
105
|
+
page_size: limits['page_size'],
|
93
106
|
)
|
94
|
-
|
107
|
+
|
95
108
|
@version.stream(page,
|
96
|
-
limit: limits[
|
97
|
-
page_limit: limits[
|
109
|
+
limit: limits['limit'],
|
110
|
+
page_limit: limits['page_limit']).each {|x| yield x}
|
98
111
|
end
|
99
|
-
|
112
|
+
|
100
113
|
##
|
101
114
|
# Retrieve a single page of NotificationInstance records from the API.
|
102
115
|
# Request is executed immediately.
|
103
116
|
# @param [String] log Only show notifications for this log level
|
104
117
|
# @param [Time] message_date_before Filter by date
|
105
118
|
# @param [Time] message_date Filter by date
|
106
|
-
# @param [Time] message_date_after Filter by date
|
119
|
+
# @param [Time] message_date_after: Filter by date
|
107
120
|
# @param [String] page_token PageToken provided by the API
|
108
121
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
109
122
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
123
|
+
|
110
124
|
# @return [Page] Page of NotificationInstance
|
111
|
-
def page(log:
|
112
|
-
params =
|
125
|
+
def page(log: nil, message_date_before: nil, message_date: nil, message_date_after: nil, page_token: nil, page_number: nil, page_size: nil)
|
126
|
+
params = {
|
113
127
|
'Log' => log,
|
114
|
-
'MessageDate<' => Twilio.
|
115
|
-
'MessageDate' => Twilio.
|
116
|
-
'MessageDate>' => Twilio.
|
128
|
+
'MessageDate<' => Twilio.serialize_iso8601(message_date_before),
|
129
|
+
'MessageDate' => Twilio.serialize_iso8601(message_date),
|
130
|
+
'MessageDate>' => Twilio.serialize_iso8601(message_date_after),
|
117
131
|
'PageToken' => page_token,
|
118
132
|
'Page' => page_number,
|
119
133
|
'PageSize' => page_size,
|
120
|
-
}
|
134
|
+
}
|
121
135
|
response = @version.page(
|
122
136
|
'GET',
|
123
137
|
@uri,
|
124
138
|
params
|
125
139
|
)
|
126
|
-
NotificationPage.new(@version, response, @solution)
|
140
|
+
return NotificationPage.new(@version, response, @solution)
|
127
141
|
end
|
128
|
-
|
142
|
+
|
129
143
|
##
|
130
|
-
#
|
131
|
-
#
|
132
|
-
|
133
|
-
# @return [
|
134
|
-
def
|
135
|
-
|
136
|
-
|
137
|
-
|
144
|
+
# Constructs a NotificationContext
|
145
|
+
# @param [String] sid The notification Sid that uniquely identifies this resource
|
146
|
+
|
147
|
+
# @return [NotificationContext] NotificationContext
|
148
|
+
def get(sid)
|
149
|
+
NotificationContext.new(
|
150
|
+
@version,
|
151
|
+
account_sid: @solution[:account_sid],
|
152
|
+
sid: sid,
|
138
153
|
)
|
139
|
-
NotificationPage.new(@version, response, @solution)
|
140
154
|
end
|
141
|
-
|
155
|
+
|
142
156
|
##
|
143
157
|
# Provide a user friendly representation
|
144
158
|
def to_s
|
145
159
|
'#<Twilio.Api.V2010.NotificationList>'
|
146
160
|
end
|
147
161
|
end
|
148
|
-
|
162
|
+
|
149
163
|
class NotificationPage < Page
|
150
164
|
##
|
151
165
|
# Initialize the NotificationPage
|
152
166
|
# @param [Version] version Version that contains the resource
|
153
167
|
# @param [Response] response Response from the API
|
154
168
|
# @param [Hash] solution Path solution for the resource
|
169
|
+
# @param [String] account_sid The unique id of the Account responsible for this
|
170
|
+
# notification.
|
171
|
+
|
155
172
|
# @return [NotificationPage] NotificationPage
|
156
173
|
def initialize(version, response, solution)
|
157
174
|
super(version, response)
|
158
|
-
|
175
|
+
|
159
176
|
# Path Solution
|
160
177
|
@solution = solution
|
161
178
|
end
|
162
|
-
|
179
|
+
|
163
180
|
##
|
164
181
|
# Build an instance of NotificationInstance
|
165
182
|
# @param [Hash] payload Payload response from the API
|
183
|
+
|
166
184
|
# @return [NotificationInstance] NotificationInstance
|
167
185
|
def get_instance(payload)
|
168
|
-
NotificationInstance.new(
|
186
|
+
return NotificationInstance.new(
|
169
187
|
@version,
|
170
188
|
payload,
|
171
|
-
account_sid: @solution[
|
189
|
+
account_sid: @solution['account_sid'],
|
172
190
|
)
|
173
191
|
end
|
174
|
-
|
192
|
+
|
175
193
|
##
|
176
194
|
# Provide a user friendly representation
|
177
195
|
def to_s
|
178
196
|
'<Twilio.Api.V2010.NotificationPage>'
|
179
197
|
end
|
180
198
|
end
|
181
|
-
|
199
|
+
|
182
200
|
class NotificationContext < InstanceContext
|
183
201
|
##
|
184
202
|
# Initialize the NotificationContext
|
185
203
|
# @param [Version] version Version that contains the resource
|
186
204
|
# @param [String] account_sid The account_sid
|
187
205
|
# @param [String] sid The notification Sid that uniquely identifies this resource
|
206
|
+
|
188
207
|
# @return [NotificationContext] NotificationContext
|
189
208
|
def initialize(version, account_sid, sid)
|
190
209
|
super(version)
|
191
|
-
|
210
|
+
|
192
211
|
# Path Solution
|
193
212
|
@solution = {
|
194
213
|
account_sid: account_sid,
|
@@ -196,34 +215,34 @@ module Twilio
|
|
196
215
|
}
|
197
216
|
@uri = "/Accounts/#{@solution[:account_sid]}/Notifications/#{@solution[:sid]}.json"
|
198
217
|
end
|
199
|
-
|
218
|
+
|
200
219
|
##
|
201
220
|
# Fetch a NotificationInstance
|
202
221
|
# @return [NotificationInstance] Fetched NotificationInstance
|
203
222
|
def fetch
|
204
|
-
params =
|
205
|
-
|
223
|
+
params = {}
|
224
|
+
|
206
225
|
payload = @version.fetch(
|
207
226
|
'GET',
|
208
227
|
@uri,
|
209
228
|
params,
|
210
229
|
)
|
211
|
-
|
212
|
-
NotificationInstance.new(
|
230
|
+
|
231
|
+
return NotificationInstance.new(
|
213
232
|
@version,
|
214
233
|
payload,
|
215
|
-
account_sid: @solution[
|
216
|
-
sid: @solution[
|
234
|
+
account_sid: @solution['account_sid'],
|
235
|
+
sid: @solution['sid'],
|
217
236
|
)
|
218
237
|
end
|
219
|
-
|
238
|
+
|
220
239
|
##
|
221
240
|
# Deletes the NotificationInstance
|
222
241
|
# @return [Boolean] true if delete succeeds, true otherwise
|
223
242
|
def delete
|
224
|
-
@version.delete('delete', @uri)
|
243
|
+
return @version.delete('delete', @uri)
|
225
244
|
end
|
226
|
-
|
245
|
+
|
227
246
|
##
|
228
247
|
# Provide a user friendly representation
|
229
248
|
def to_s
|
@@ -231,7 +250,7 @@ module Twilio
|
|
231
250
|
"#<Twilio.Api.V2010.NotificationContext #{context}>"
|
232
251
|
end
|
233
252
|
end
|
234
|
-
|
253
|
+
|
235
254
|
class NotificationInstance < InstanceResource
|
236
255
|
##
|
237
256
|
# Initialize the NotificationInstance
|
@@ -240,10 +259,11 @@ module Twilio
|
|
240
259
|
# @param [String] account_sid The unique id of the Account responsible for this
|
241
260
|
# notification.
|
242
261
|
# @param [String] sid The notification Sid that uniquely identifies this resource
|
262
|
+
|
243
263
|
# @return [NotificationInstance] NotificationInstance
|
244
264
|
def initialize(version, payload, account_sid: nil, sid: nil)
|
245
265
|
super(version)
|
246
|
-
|
266
|
+
|
247
267
|
# Marshaled Properties
|
248
268
|
@properties = {
|
249
269
|
'account_sid' => payload['account_sid'],
|
@@ -264,7 +284,7 @@ module Twilio
|
|
264
284
|
'response_body' => payload['response_body'],
|
265
285
|
'response_headers' => payload['response_headers'],
|
266
286
|
}
|
267
|
-
|
287
|
+
|
268
288
|
# Context
|
269
289
|
@instance_context = nil
|
270
290
|
@params = {
|
@@ -272,10 +292,12 @@ module Twilio
|
|
272
292
|
'sid' => sid || @properties['sid'],
|
273
293
|
}
|
274
294
|
end
|
275
|
-
|
295
|
+
|
276
296
|
##
|
277
297
|
# Generate an instance context for the instance, the context is capable of
|
278
298
|
# performing various actions. All instance actions are proxied to the context
|
299
|
+
# @param [Version] version Version that contains the resource
|
300
|
+
|
279
301
|
# @return [NotificationContext] NotificationContext for this NotificationInstance
|
280
302
|
def context
|
281
303
|
unless @instance_context
|
@@ -287,128 +309,94 @@ module Twilio
|
|
287
309
|
end
|
288
310
|
@instance_context
|
289
311
|
end
|
290
|
-
|
291
|
-
##
|
292
|
-
# @return [String] The unique sid that identifies this account
|
312
|
+
|
293
313
|
def account_sid
|
294
314
|
@properties['account_sid']
|
295
315
|
end
|
296
|
-
|
297
|
-
##
|
298
|
-
# @return [String] The version of the Twilio API in use
|
316
|
+
|
299
317
|
def api_version
|
300
318
|
@properties['api_version']
|
301
319
|
end
|
302
|
-
|
303
|
-
##
|
304
|
-
# @return [String] The string that uniquely identifies the call
|
320
|
+
|
305
321
|
def call_sid
|
306
322
|
@properties['call_sid']
|
307
323
|
end
|
308
|
-
|
309
|
-
##
|
310
|
-
# @return [Time] The date this resource was created
|
324
|
+
|
311
325
|
def date_created
|
312
326
|
@properties['date_created']
|
313
327
|
end
|
314
|
-
|
315
|
-
##
|
316
|
-
# @return [Time] The date this resource was last updated
|
328
|
+
|
317
329
|
def date_updated
|
318
330
|
@properties['date_updated']
|
319
331
|
end
|
320
|
-
|
321
|
-
##
|
322
|
-
# @return [String] A unique error code corresponding to the notification
|
332
|
+
|
323
333
|
def error_code
|
324
334
|
@properties['error_code']
|
325
335
|
end
|
326
|
-
|
327
|
-
##
|
328
|
-
# @return [String] An integer log level
|
336
|
+
|
329
337
|
def log
|
330
338
|
@properties['log']
|
331
339
|
end
|
332
|
-
|
333
|
-
##
|
334
|
-
# @return [Time] The date the notification was generated
|
340
|
+
|
335
341
|
def message_date
|
336
342
|
@properties['message_date']
|
337
343
|
end
|
338
|
-
|
339
|
-
##
|
340
|
-
# @return [String] The text of the notification.
|
344
|
+
|
341
345
|
def message_text
|
342
346
|
@properties['message_text']
|
343
347
|
end
|
344
|
-
|
345
|
-
##
|
346
|
-
# @return [String] A URL for more information about the error code
|
348
|
+
|
347
349
|
def more_info
|
348
350
|
@properties['more_info']
|
349
351
|
end
|
350
|
-
|
351
|
-
##
|
352
|
-
# @return [String] HTTP method used with the request url
|
352
|
+
|
353
353
|
def request_method
|
354
354
|
@properties['request_method']
|
355
355
|
end
|
356
|
-
|
357
|
-
##
|
358
|
-
# @return [String] URL of the resource that generated the notification
|
356
|
+
|
359
357
|
def request_url
|
360
358
|
@properties['request_url']
|
361
359
|
end
|
362
|
-
|
363
|
-
##
|
364
|
-
# @return [String] Twilio-generated HTTP variables sent to the server
|
360
|
+
|
365
361
|
def request_variables
|
366
362
|
@properties['request_variables']
|
367
363
|
end
|
368
|
-
|
369
|
-
##
|
370
|
-
# @return [String] The HTTP body returned by your server.
|
364
|
+
|
371
365
|
def response_body
|
372
366
|
@properties['response_body']
|
373
367
|
end
|
374
|
-
|
375
|
-
##
|
376
|
-
# @return [String] The HTTP headers returned by your server.
|
368
|
+
|
377
369
|
def response_headers
|
378
370
|
@properties['response_headers']
|
379
371
|
end
|
380
|
-
|
381
|
-
##
|
382
|
-
# @return [String] A string that uniquely identifies this notification
|
372
|
+
|
383
373
|
def sid
|
384
374
|
@properties['sid']
|
385
375
|
end
|
386
|
-
|
387
|
-
##
|
388
|
-
# @return [String] The URI for this resource
|
376
|
+
|
389
377
|
def uri
|
390
378
|
@properties['uri']
|
391
379
|
end
|
392
|
-
|
380
|
+
|
393
381
|
##
|
394
382
|
# Fetch a NotificationInstance
|
395
383
|
# @return [NotificationInstance] Fetched NotificationInstance
|
396
384
|
def fetch
|
397
|
-
context.fetch
|
385
|
+
@context.fetch()
|
398
386
|
end
|
399
|
-
|
387
|
+
|
400
388
|
##
|
401
389
|
# Deletes the NotificationInstance
|
402
390
|
# @return [Boolean] true if delete succeeds, true otherwise
|
403
391
|
def delete
|
404
|
-
context.delete
|
392
|
+
@context.delete()
|
405
393
|
end
|
406
|
-
|
394
|
+
|
407
395
|
##
|
408
396
|
# Provide a user friendly representation
|
409
397
|
def to_s
|
410
|
-
|
411
|
-
"<Twilio.Api.V2010.NotificationInstance #{
|
398
|
+
context = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
399
|
+
"<Twilio.Api.V2010.NotificationInstance #{context}>"
|
412
400
|
end
|
413
401
|
end
|
414
402
|
end
|