whoosh-ruby 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +1 -0
- data/.github/workflows/pr-lint.yml +21 -0
- data/.gitignore +21 -0
- data/.rubocop.yml +58 -0
- data/.rubocop_todo.yml +261 -0
- data/Dockerfile +9 -0
- data/Gemfile +2 -0
- data/LICENSE +21 -0
- data/Makefile +37 -0
- data/README.md +13 -189
- data/Rakefile +10 -0
- data/conf/cacert.pem +3376 -0
- data/lib/rack/twilio_webhook_authentication.rb +72 -0
- data/lib/twilio-ruby/base/client_base.rb +124 -0
- data/lib/twilio-ruby/framework/request.rb +41 -0
- data/lib/twilio-ruby/framework/response.rb +18 -0
- data/lib/twilio-ruby/framework/rest/domain.rb +36 -0
- data/lib/twilio-ruby/framework/rest/error.rb +39 -0
- data/lib/twilio-ruby/framework/rest/helper.rb +11 -0
- data/lib/twilio-ruby/framework/rest/obsolete_client.rb +12 -0
- data/lib/twilio-ruby/framework/rest/page.rb +103 -0
- data/lib/twilio-ruby/framework/rest/resource.rb +23 -0
- data/lib/twilio-ruby/framework/rest/version.rb +153 -0
- data/lib/twilio-ruby/framework/serialize.rb +81 -0
- data/lib/twilio-ruby/framework/values.rb +9 -0
- data/lib/twilio-ruby/http/http_client.rb +79 -0
- data/lib/twilio-ruby/http.rb +5 -0
- data/lib/twilio-ruby/jwt/access_token.rb +226 -0
- data/lib/twilio-ruby/jwt/client_capability.rb +102 -0
- data/lib/twilio-ruby/jwt/jwt.rb +59 -0
- data/lib/twilio-ruby/jwt/task_router.rb +172 -0
- data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +206 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +379 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +379 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +129 -0
- data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +222 -0
- data/lib/twilio-ruby/rest/accounts/v1.rb +52 -0
- data/lib/twilio-ruby/rest/accounts.rb +26 -0
- data/lib/twilio-ruby/rest/accounts_base.rb +38 -0
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +378 -0
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +562 -0
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +624 -0
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +335 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +433 -0
- data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +143 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +210 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +264 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +328 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +416 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +324 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +509 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +872 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +872 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +163 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +239 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +970 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +661 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +466 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +505 -0
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +434 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +338 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +412 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +548 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +548 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +548 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +853 -0
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +343 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +174 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +355 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +625 -0
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +164 -0
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +164 -0
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +412 -0
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +378 -0
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +352 -0
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +434 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +366 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +382 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +376 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +521 -0
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +427 -0
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +343 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +347 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_ip_access_control_list_mapping.rb +347 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +140 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +347 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +126 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +126 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +357 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +357 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +665 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +424 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +413 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +148 -0
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +178 -0
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +372 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +331 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +393 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +500 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +128 -0
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +179 -0
- data/lib/twilio-ruby/rest/api/v2010/account.rb +992 -0
- data/lib/twilio-ruby/rest/api/v2010.rb +132 -0
- data/lib/twilio-ruby/rest/api.rb +238 -0
- data/lib/twilio-ruby/rest/api_base.rb +38 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +241 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +217 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +391 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +436 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +410 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +478 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +241 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +374 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +438 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +253 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +226 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +526 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +434 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +684 -0
- data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +207 -0
- data/lib/twilio-ruby/rest/autopilot/v1.rb +55 -0
- data/lib/twilio-ruby/rest/autopilot.rb +22 -0
- data/lib/twilio-ruby/rest/autopilot_base.rb +38 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +307 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +306 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +278 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +254 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +253 -0
- data/lib/twilio-ruby/rest/bulkexports/v1.rb +64 -0
- data/lib/twilio-ruby/rest/bulkexports.rb +25 -0
- data/lib/twilio-ruby/rest/bulkexports_base.rb +38 -0
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +430 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +386 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +434 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +451 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +542 -0
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +404 -0
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +252 -0
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +473 -0
- data/lib/twilio-ruby/rest/chat/v1/service.rb +872 -0
- data/lib/twilio-ruby/rest/chat/v1.rb +64 -0
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +430 -0
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +379 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +386 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +498 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +526 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +452 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +614 -0
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +404 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +376 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +418 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +517 -0
- data/lib/twilio-ruby/rest/chat/v2/service.rb +775 -0
- data/lib/twilio-ruby/rest/chat/v2.rb +64 -0
- data/lib/twilio-ruby/rest/chat/v3/channel.rb +297 -0
- data/lib/twilio-ruby/rest/chat/v3.rb +71 -0
- data/lib/twilio-ruby/rest/chat.rb +35 -0
- data/lib/twilio-ruby/rest/chat_base.rb +48 -0
- data/lib/twilio-ruby/rest/client.rb +346 -0
- data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +208 -0
- data/lib/twilio-ruby/rest/content/v1/content.rb +364 -0
- data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +252 -0
- data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +266 -0
- data/lib/twilio-ruby/rest/content/v1.rb +61 -0
- data/lib/twilio-ruby/rest/content.rb +15 -0
- data/lib/twilio-ruby/rest/content_base.rb +38 -0
- data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +474 -0
- data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +281 -0
- data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +287 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +346 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +537 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +506 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +433 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +595 -0
- data/lib/twilio-ruby/rest/conversations/v1/credential.rb +436 -0
- data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +315 -0
- data/lib/twilio-ruby/rest/conversations/v1/role.rb +395 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +372 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +334 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +280 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +314 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +357 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +550 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +519 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +446 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +604 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +320 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +404 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +458 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +492 -0
- data/lib/twilio-ruby/rest/conversations/v1/service.rb +487 -0
- data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +453 -0
- data/lib/twilio-ruby/rest/conversations/v1/user.rb +483 -0
- data/lib/twilio-ruby/rest/conversations/v1.rb +136 -0
- data/lib/twilio-ruby/rest/conversations.rb +79 -0
- data/lib/twilio-ruby/rest/conversations_base.rb +38 -0
- data/lib/twilio-ruby/rest/events/v1/event_type.rb +316 -0
- data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +302 -0
- data/lib/twilio-ruby/rest/events/v1/schema.rb +237 -0
- data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +129 -0
- data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +136 -0
- data/lib/twilio-ruby/rest/events/v1/sink.rb +449 -0
- data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +375 -0
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +430 -0
- data/lib/twilio-ruby/rest/events/v1.rb +94 -0
- data/lib/twilio-ruby/rest/events.rb +43 -0
- data/lib/twilio-ruby/rest/events_base.rb +38 -0
- data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +457 -0
- data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +376 -0
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +497 -0
- data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +575 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +337 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +231 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +445 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +360 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +445 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +364 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +217 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +155 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +141 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +196 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +252 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +340 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +407 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +257 -0
- data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +389 -0
- data/lib/twilio-ruby/rest/flex_api/v1.rb +202 -0
- data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +146 -0
- data/lib/twilio-ruby/rest/flex_api/v2.rb +40 -0
- data/lib/twilio-ruby/rest/flex_api.rb +73 -0
- data/lib/twilio-ruby/rest/flex_api_base.rb +43 -0
- data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +275 -0
- data/lib/twilio-ruby/rest/frontline_api/v1.rb +49 -0
- data/lib/twilio-ruby/rest/frontline_api.rb +15 -0
- data/lib/twilio-ruby/rest/frontline_api_base.rb +38 -0
- data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +319 -0
- data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +350 -0
- data/lib/twilio-ruby/rest/insights/v1/call/event.rb +278 -0
- data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +271 -0
- data/lib/twilio-ruby/rest/insights/v1/call.rb +268 -0
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +476 -0
- data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +492 -0
- data/lib/twilio-ruby/rest/insights/v1/conference.rb +516 -0
- data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +386 -0
- data/lib/twilio-ruby/rest/insights/v1/room.rb +504 -0
- data/lib/twilio-ruby/rest/insights/v1/setting.rb +254 -0
- data/lib/twilio-ruby/rest/insights/v1.rb +91 -0
- data/lib/twilio-ruby/rest/insights.rb +46 -0
- data/lib/twilio-ruby/rest/insights_base.rb +38 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +430 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +386 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +434 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +451 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +542 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +404 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +252 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +473 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +872 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +64 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +430 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +379 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +386 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +498 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +526 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +452 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +614 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +404 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +376 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +409 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +517 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +775 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +64 -0
- data/lib/twilio-ruby/rest/ip_messaging.rb +23 -0
- data/lib/twilio-ruby/rest/ip_messaging_base.rb +43 -0
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +251 -0
- data/lib/twilio-ruby/rest/lookups/v1.rb +49 -0
- data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +350 -0
- data/lib/twilio-ruby/rest/lookups/v2.rb +49 -0
- data/lib/twilio-ruby/rest/lookups.rb +16 -0
- data/lib/twilio-ruby/rest/lookups_base.rb +43 -0
- data/lib/twilio-ruby/rest/media/v1/media_processor.rb +423 -0
- data/lib/twilio-ruby/rest/media/v1/media_recording.rb +409 -0
- data/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +252 -0
- data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +435 -0
- data/lib/twilio-ruby/rest/media/v1.rb +79 -0
- data/lib/twilio-ruby/rest/media.rb +35 -0
- data/lib/twilio-ruby/rest/media_base.rb +38 -0
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +136 -0
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +367 -0
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +498 -0
- data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +189 -0
- data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +280 -0
- data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +263 -0
- data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +231 -0
- data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +161 -0
- data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +214 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +359 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +366 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +366 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +507 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +135 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +751 -0
- data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +123 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +164 -0
- data/lib/twilio-ruby/rest/messaging.rb +74 -0
- data/lib/twilio-ruby/rest/messaging_base.rb +38 -0
- data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +359 -0
- data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +352 -0
- data/lib/twilio-ruby/rest/microvisor/v1/app/app_manifest.rb +208 -0
- data/lib/twilio-ruby/rest/microvisor/v1/app.rb +350 -0
- data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +375 -0
- data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +368 -0
- data/lib/twilio-ruby/rest/microvisor/v1/device.rb +422 -0
- data/lib/twilio-ruby/rest/microvisor/v1.rb +94 -0
- data/lib/twilio-ruby/rest/microvisor.rb +24 -0
- data/lib/twilio-ruby/rest/microvisor_base.rb +38 -0
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +412 -0
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +398 -0
- data/lib/twilio-ruby/rest/monitor/v1.rb +64 -0
- data/lib/twilio-ruby/rest/monitor.rb +25 -0
- data/lib/twilio-ruby/rest/monitor_base.rb +38 -0
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +432 -0
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +447 -0
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +320 -0
- data/lib/twilio-ruby/rest/notify/v1/service.rb +638 -0
- data/lib/twilio-ruby/rest/notify/v1.rb +64 -0
- data/lib/twilio-ruby/rest/notify.rb +25 -0
- data/lib/twilio-ruby/rest/notify_base.rb +38 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +286 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +336 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +345 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +201 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +620 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +399 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +298 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +333 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +420 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +298 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +185 -0
- data/lib/twilio-ruby/rest/numbers/v2.rb +40 -0
- data/lib/twilio-ruby/rest/numbers.rb +12 -0
- data/lib/twilio-ruby/rest/numbers_base.rb +38 -0
- data/lib/twilio-ruby/rest/oauth/v1/device_code.rb +171 -0
- data/lib/twilio-ruby/rest/oauth/v1/oauth.rb +185 -0
- data/lib/twilio-ruby/rest/oauth/v1/openid_discovery.rb +262 -0
- data/lib/twilio-ruby/rest/oauth/v1/token.rb +179 -0
- data/lib/twilio-ruby/rest/oauth/v1/user_info.rb +213 -0
- data/lib/twilio-ruby/rest/oauth/v1.rb +64 -0
- data/lib/twilio-ruby/rest/oauth.rb +33 -0
- data/lib/twilio-ruby/rest/oauth_base.rb +38 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +419 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +402 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +458 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +416 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +505 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices.rb +49 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +383 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +459 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +626 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +64 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +309 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +336 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +350 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +440 -0
- data/lib/twilio-ruby/rest/preview/marketplace.rb +64 -0
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +390 -0
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +450 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +449 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +390 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +427 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +452 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +390 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +427 -0
- data/lib/twilio-ruby/rest/preview/sync/service.rb +506 -0
- data/lib/twilio-ruby/rest/preview/sync.rb +49 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +241 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +241 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +217 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +391 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +436 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +410 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +467 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +241 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +374 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +438 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +253 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +226 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +526 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant.rb +664 -0
- data/lib/twilio-ruby/rest/preview/understand.rb +49 -0
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +402 -0
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +459 -0
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +260 -0
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +590 -0
- data/lib/twilio-ruby/rest/preview/wireless.rb +79 -0
- data/lib/twilio-ruby/rest/preview.rb +102 -0
- data/lib/twilio-ruby/rest/preview_base.rb +63 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +305 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +115 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +298 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +115 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +305 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +227 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +129 -0
- data/lib/twilio-ruby/rest/pricing/v1.rb +52 -0
- data/lib/twilio-ruby/rest/pricing/v2/country.rb +300 -0
- data/lib/twilio-ruby/rest/pricing/v2/number.rb +240 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +305 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +245 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice.rb +129 -0
- data/lib/twilio-ruby/rest/pricing/v2.rb +70 -0
- data/lib/twilio-ruby/rest/pricing.rb +47 -0
- data/lib/twilio-ruby/rest/pricing_base.rb +43 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +427 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +420 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +440 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +435 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +530 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +407 -0
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +570 -0
- data/lib/twilio-ruby/rest/proxy/v1.rb +49 -0
- data/lib/twilio-ruby/rest/proxy.rb +15 -0
- data/lib/twilio-ruby/rest/proxy_base.rb +38 -0
- data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +268 -0
- data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +268 -0
- data/lib/twilio-ruby/rest/routes/v2/trunk.rb +268 -0
- data/lib/twilio-ruby/rest/routes/v2.rb +79 -0
- data/lib/twilio-ruby/rest/routes.rb +32 -0
- data/lib/twilio-ruby/rest/routes_base.rb +38 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +327 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +420 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +219 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +415 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +348 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +376 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +415 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +464 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +230 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +354 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +420 -0
- data/lib/twilio-ruby/rest/serverless/v1/service.rb +534 -0
- data/lib/twilio-ruby/rest/serverless/v1.rb +49 -0
- data/lib/twilio-ruby/rest/serverless.rb +15 -0
- data/lib/twilio-ruby/rest/serverless_base.rb +38 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +217 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +228 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +373 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +430 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +217 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +228 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +373 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +478 -0
- data/lib/twilio-ruby/rest/studio/v1/flow.rb +391 -0
- data/lib/twilio-ruby/rest/studio/v1.rb +49 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +217 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +228 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +373 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +471 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +349 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +232 -0
- data/lib/twilio-ruby/rest/studio/v2/flow.rb +530 -0
- data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +139 -0
- data/lib/twilio-ruby/rest/studio/v2.rb +55 -0
- data/lib/twilio-ruby/rest/studio.rb +22 -0
- data/lib/twilio-ruby/rest/studio_base.rb +43 -0
- data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +407 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +484 -0
- data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +413 -0
- data/lib/twilio-ruby/rest/supersim/v1/network.rb +316 -0
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +345 -0
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +391 -0
- data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +259 -0
- data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +250 -0
- data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +208 -0
- data/lib/twilio-ruby/rest/supersim/v1/sim.rb +474 -0
- data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +372 -0
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +322 -0
- data/lib/twilio-ruby/rest/supersim/v1.rb +151 -0
- data/lib/twilio-ruby/rest/supersim.rb +88 -0
- data/lib/twilio-ruby/rest/supersim_base.rb +38 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +388 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +464 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +481 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +388 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +478 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +484 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +388 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +478 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +146 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +427 -0
- data/lib/twilio-ruby/rest/sync/v1/service.rb +586 -0
- data/lib/twilio-ruby/rest/sync/v1.rb +49 -0
- data/lib/twilio-ruby/rest/sync.rb +15 -0
- data/lib/twilio-ruby/rest/sync_base.rb +38 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +415 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +461 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +713 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +623 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +417 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +371 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +291 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +259 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +273 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +578 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +694 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +401 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +246 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +293 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +226 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +262 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +639 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +371 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +256 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +259 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +532 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +360 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +259 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +248 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +732 -0
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +49 -0
- data/lib/twilio-ruby/rest/taskrouter.rb +15 -0
- data/lib/twilio-ruby/rest/taskrouter_base.rb +38 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +350 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +350 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +448 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +483 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +231 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +634 -0
- data/lib/twilio-ruby/rest/trunking/v1.rb +49 -0
- data/lib/twilio-ruby/rest/trunking.rb +15 -0
- data/lib/twilio-ruby/rest/trunking_base.rb +38 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +367 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +343 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +341 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +539 -0
- data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +394 -0
- data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +293 -0
- data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +286 -0
- data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +408 -0
- data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +293 -0
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +367 -0
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +343 -0
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +341 -0
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +539 -0
- data/lib/twilio-ruby/rest/trusthub/v1.rb +139 -0
- data/lib/twilio-ruby/rest/trusthub.rb +74 -0
- data/lib/twilio-ruby/rest/trusthub_base.rb +38 -0
- data/lib/twilio-ruby/rest/verify/v2/form.rb +203 -0
- data/lib/twilio-ruby/rest/verify/v2/safelist.rb +231 -0
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +279 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +198 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +512 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +459 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +269 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +430 -0
- data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +387 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +413 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +428 -0
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +381 -0
- data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +225 -0
- data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +455 -0
- data/lib/twilio-ruby/rest/verify/v2/service.rb +777 -0
- data/lib/twilio-ruby/rest/verify/v2/template.rb +231 -0
- data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +391 -0
- data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +247 -0
- data/lib/twilio-ruby/rest/verify/v2.rb +106 -0
- data/lib/twilio-ruby/rest/verify.rb +58 -0
- data/lib/twilio-ruby/rest/verify_base.rb +38 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +492 -0
- data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +540 -0
- data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +289 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +442 -0
- data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +289 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +259 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +332 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +181 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +339 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant.rb +503 -0
- data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +170 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +428 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +621 -0
- data/lib/twilio-ruby/rest/video/v1.rb +106 -0
- data/lib/twilio-ruby/rest/video.rb +59 -0
- data/lib/twilio-ruby/rest/video_base.rb +38 -0
- data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +168 -0
- data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +512 -0
- data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +448 -0
- data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +402 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +142 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +203 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +389 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +224 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +130 -0
- data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +388 -0
- data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +371 -0
- data/lib/twilio-ruby/rest/voice/v1.rb +137 -0
- data/lib/twilio-ruby/rest/voice.rb +61 -0
- data/lib/twilio-ruby/rest/voice_base.rb +38 -0
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +423 -0
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +474 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +306 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +250 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +650 -0
- data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +238 -0
- data/lib/twilio-ruby/rest/wireless/v1.rb +85 -0
- data/lib/twilio-ruby/rest/wireless.rb +42 -0
- data/lib/twilio-ruby/rest/wireless_base.rb +38 -0
- data/lib/twilio-ruby/rest.rb +14 -0
- data/lib/twilio-ruby/security/request_validator.rb +150 -0
- data/lib/twilio-ruby/twiml/fax_response.rb +45 -0
- data/lib/twilio-ruby/twiml/messaging_response.rb +107 -0
- data/lib/twilio-ruby/twiml/twiml.rb +126 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +1948 -0
- data/lib/twilio-ruby/util/configuration.rb +33 -0
- data/lib/twilio-ruby/util.rb +19 -0
- data/lib/twilio-ruby/version.rb +3 -0
- data/lib/twilio-ruby.rb +47 -0
- data/whoosh-ruby.gemspec +39 -0
- metadata +636 -3
@@ -0,0 +1,614 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
4
|
+
# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
5
|
+
# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
6
|
+
#
|
7
|
+
# Twilio - Chat
|
8
|
+
# This is the public Twilio REST API.
|
9
|
+
#
|
10
|
+
# NOTE: This class is auto generated by OpenAPI Generator.
|
11
|
+
# https://openapi-generator.tech
|
12
|
+
# Do not edit the class manually.
|
13
|
+
#
|
14
|
+
|
15
|
+
|
16
|
+
module Twilio
|
17
|
+
module REST
|
18
|
+
class Chat < ChatBase
|
19
|
+
class V2 < Version
|
20
|
+
class ServiceContext < InstanceContext
|
21
|
+
|
22
|
+
class ChannelList < ListResource
|
23
|
+
##
|
24
|
+
# Initialize the ChannelList
|
25
|
+
# @param [Version] version Version that contains the resource
|
26
|
+
# @return [ChannelList] ChannelList
|
27
|
+
def initialize(version, service_sid: nil)
|
28
|
+
super(version)
|
29
|
+
# Path Solution
|
30
|
+
@solution = { service_sid: service_sid }
|
31
|
+
@uri = "/Services/#{@solution[:service_sid]}/Channels"
|
32
|
+
|
33
|
+
end
|
34
|
+
##
|
35
|
+
# Create the ChannelInstance
|
36
|
+
# @param [String] friendly_name A descriptive string that you create to describe the new resource. It can be up to 64 characters long.
|
37
|
+
# @param [String] unique_name An application-defined string that uniquely identifies the resource. It can be used to address the resource in place of the Channel resource's `sid` in the URL. This value must be 64 characters or less in length and be unique within the Service.
|
38
|
+
# @param [String] attributes A valid JSON string that contains application-specific data.
|
39
|
+
# @param [ChannelType] type
|
40
|
+
# @param [Time] date_created The date, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, to assign to the resource as the date it was created. The default value is the current time set by the Chat service. Note that this should only be used in cases where a Channel is being recreated from a backup/separate source.
|
41
|
+
# @param [Time] date_updated The date, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, to assign to the resource as the date it was last updated. The default value is `null`. Note that this parameter should only be used in cases where a Channel is being recreated from a backup/separate source and where a Message was previously updated.
|
42
|
+
# @param [String] created_by The `identity` of the User that created the channel. Default is: `system`.
|
43
|
+
# @param [ChannelEnumWebhookEnabledType] x_twilio_webhook_enabled The X-Twilio-Webhook-Enabled HTTP request header
|
44
|
+
# @return [ChannelInstance] Created ChannelInstance
|
45
|
+
def create(
|
46
|
+
friendly_name: :unset,
|
47
|
+
unique_name: :unset,
|
48
|
+
attributes: :unset,
|
49
|
+
type: :unset,
|
50
|
+
date_created: :unset,
|
51
|
+
date_updated: :unset,
|
52
|
+
created_by: :unset,
|
53
|
+
x_twilio_webhook_enabled: :unset
|
54
|
+
)
|
55
|
+
|
56
|
+
data = Twilio::Values.of({
|
57
|
+
'FriendlyName' => friendly_name,
|
58
|
+
'UniqueName' => unique_name,
|
59
|
+
'Attributes' => attributes,
|
60
|
+
'Type' => type,
|
61
|
+
'DateCreated' => Twilio.serialize_iso8601_datetime(date_created),
|
62
|
+
'DateUpdated' => Twilio.serialize_iso8601_datetime(date_updated),
|
63
|
+
'CreatedBy' => created_by,
|
64
|
+
})
|
65
|
+
|
66
|
+
headers = Twilio::Values.of({ 'X-Twilio-Webhook-Enabled' => x_twilio_webhook_enabled, })
|
67
|
+
payload = @version.create('POST', @uri, data: data, headers: headers)
|
68
|
+
ChannelInstance.new(
|
69
|
+
@version,
|
70
|
+
payload,
|
71
|
+
service_sid: @solution[:service_sid],
|
72
|
+
)
|
73
|
+
end
|
74
|
+
|
75
|
+
|
76
|
+
##
|
77
|
+
# Lists ChannelInstance records from the API as a list.
|
78
|
+
# Unlike stream(), this operation is eager and will load `limit` records into
|
79
|
+
# memory before returning.
|
80
|
+
# @param [Array[ChannelType]] type The visibility of the Channels to read. Can be: `public` or `private` and defaults to `public`.
|
81
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
82
|
+
# guarantees to never return more than limit. Default is no limit
|
83
|
+
# @param [Integer] page_size Number of records to fetch per request, when
|
84
|
+
# not set will use the default value of 50 records. If no page_size is defined
|
85
|
+
# but a limit is defined, stream() will attempt to read the limit with the most
|
86
|
+
# efficient page size, i.e. min(limit, 1000)
|
87
|
+
# @return [Array] Array of up to limit results
|
88
|
+
def list(type: :unset, limit: nil, page_size: nil)
|
89
|
+
self.stream(
|
90
|
+
type: type,
|
91
|
+
limit: limit,
|
92
|
+
page_size: page_size
|
93
|
+
).entries
|
94
|
+
end
|
95
|
+
|
96
|
+
##
|
97
|
+
# Streams Instance records from the API as an Enumerable.
|
98
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
99
|
+
# is reached.
|
100
|
+
# @param [Array[ChannelType]] type The visibility of the Channels to read. Can be: `public` or `private` and defaults to `public`.
|
101
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
102
|
+
# guarantees to never return more than limit. Default is no limit
|
103
|
+
# @param [Integer] page_size Number of records to fetch per request, when
|
104
|
+
# not set will use the default value of 50 records. If no page_size is defined
|
105
|
+
# but a limit is defined, stream() will attempt to read the limit with the most
|
106
|
+
# efficient page size, i.e. min(limit, 1000)
|
107
|
+
# @return [Enumerable] Enumerable that will yield up to limit results
|
108
|
+
def stream(type: :unset, limit: nil, page_size: nil)
|
109
|
+
limits = @version.read_limits(limit, page_size)
|
110
|
+
|
111
|
+
page = self.page(
|
112
|
+
type: type,
|
113
|
+
page_size: limits[:page_size], )
|
114
|
+
|
115
|
+
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
116
|
+
end
|
117
|
+
|
118
|
+
##
|
119
|
+
# When passed a block, yields ChannelInstance records from the API.
|
120
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
121
|
+
# is reached.
|
122
|
+
def each
|
123
|
+
limits = @version.read_limits
|
124
|
+
|
125
|
+
page = self.page(page_size: limits[:page_size], )
|
126
|
+
|
127
|
+
@version.stream(page,
|
128
|
+
limit: limits[:limit],
|
129
|
+
page_limit: limits[:page_limit]).each {|x| yield x}
|
130
|
+
end
|
131
|
+
|
132
|
+
##
|
133
|
+
# Retrieve a single page of ChannelInstance records from the API.
|
134
|
+
# Request is executed immediately.
|
135
|
+
# @param [Array[ChannelType]] type The visibility of the Channels to read. Can be: `public` or `private` and defaults to `public`.
|
136
|
+
# @param [String] page_token PageToken provided by the API
|
137
|
+
# @param [Integer] page_number Page Number, this value is simply for client state
|
138
|
+
# @param [Integer] page_size Number of records to return, defaults to 50
|
139
|
+
# @return [Page] Page of ChannelInstance
|
140
|
+
def page(type: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
|
141
|
+
params = Twilio::Values.of({
|
142
|
+
|
143
|
+
'Type' => Twilio.serialize_list(type),
|
144
|
+
|
145
|
+
'PageToken' => page_token,
|
146
|
+
'Page' => page_number,
|
147
|
+
'PageSize' => page_size,
|
148
|
+
})
|
149
|
+
|
150
|
+
response = @version.page('GET', @uri, params: params)
|
151
|
+
|
152
|
+
ChannelPage.new(@version, response, @solution)
|
153
|
+
end
|
154
|
+
|
155
|
+
##
|
156
|
+
# Retrieve a single page of ChannelInstance records from the API.
|
157
|
+
# Request is executed immediately.
|
158
|
+
# @param [String] target_url API-generated URL for the requested results page
|
159
|
+
# @return [Page] Page of ChannelInstance
|
160
|
+
def get_page(target_url)
|
161
|
+
response = @version.domain.request(
|
162
|
+
'GET',
|
163
|
+
target_url
|
164
|
+
)
|
165
|
+
ChannelPage.new(@version, response, @solution)
|
166
|
+
end
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
# Provide a user friendly representation
|
171
|
+
def to_s
|
172
|
+
'#<Twilio.Chat.V2.ChannelList>'
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
|
177
|
+
class ChannelContext < InstanceContext
|
178
|
+
##
|
179
|
+
# Initialize the ChannelContext
|
180
|
+
# @param [Version] version Version that contains the resource
|
181
|
+
# @param [String] service_sid The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to update the Channel resource in.
|
182
|
+
# @param [String] sid The SID of the Channel resource to update. This value can be either the `sid` or the `unique_name` of the Channel resource to update.
|
183
|
+
# @return [ChannelContext] ChannelContext
|
184
|
+
def initialize(version, service_sid, sid)
|
185
|
+
super(version)
|
186
|
+
|
187
|
+
# Path Solution
|
188
|
+
@solution = { service_sid: service_sid, sid: sid, }
|
189
|
+
@uri = "/Services/#{@solution[:service_sid]}/Channels/#{@solution[:sid]}"
|
190
|
+
|
191
|
+
# Dependents
|
192
|
+
@webhooks = nil
|
193
|
+
@members = nil
|
194
|
+
@messages = nil
|
195
|
+
@invites = nil
|
196
|
+
end
|
197
|
+
##
|
198
|
+
# Delete the ChannelInstance
|
199
|
+
# @param [ChannelEnumWebhookEnabledType] x_twilio_webhook_enabled The X-Twilio-Webhook-Enabled HTTP request header
|
200
|
+
# @return [Boolean] True if delete succeeds, false otherwise
|
201
|
+
def delete(
|
202
|
+
x_twilio_webhook_enabled: :unset
|
203
|
+
)
|
204
|
+
|
205
|
+
headers = Twilio::Values.of({ 'X-Twilio-Webhook-Enabled' => x_twilio_webhook_enabled, })
|
206
|
+
@version.delete('DELETE', @uri, headers: headers)
|
207
|
+
end
|
208
|
+
|
209
|
+
##
|
210
|
+
# Fetch the ChannelInstance
|
211
|
+
# @return [ChannelInstance] Fetched ChannelInstance
|
212
|
+
def fetch
|
213
|
+
|
214
|
+
payload = @version.fetch('GET', @uri)
|
215
|
+
ChannelInstance.new(
|
216
|
+
@version,
|
217
|
+
payload,
|
218
|
+
service_sid: @solution[:service_sid],
|
219
|
+
sid: @solution[:sid],
|
220
|
+
)
|
221
|
+
end
|
222
|
+
|
223
|
+
##
|
224
|
+
# Update the ChannelInstance
|
225
|
+
# @param [String] friendly_name A descriptive string that you create to describe the resource. It can be up to 256 characters long.
|
226
|
+
# @param [String] unique_name An application-defined string that uniquely identifies the resource. It can be used to address the resource in place of the resource's `sid` in the URL. This value must be 256 characters or less in length and unique within the Service.
|
227
|
+
# @param [String] attributes A valid JSON string that contains application-specific data.
|
228
|
+
# @param [Time] date_created The date, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, to assign to the resource as the date it was created. The default value is the current time set by the Chat service. Note that this should only be used in cases where a Channel is being recreated from a backup/separate source.
|
229
|
+
# @param [Time] date_updated The date, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, to assign to the resource as the date it was last updated.
|
230
|
+
# @param [String] created_by The `identity` of the User that created the channel. Default is: `system`.
|
231
|
+
# @param [ChannelEnumWebhookEnabledType] x_twilio_webhook_enabled The X-Twilio-Webhook-Enabled HTTP request header
|
232
|
+
# @return [ChannelInstance] Updated ChannelInstance
|
233
|
+
def update(
|
234
|
+
friendly_name: :unset,
|
235
|
+
unique_name: :unset,
|
236
|
+
attributes: :unset,
|
237
|
+
date_created: :unset,
|
238
|
+
date_updated: :unset,
|
239
|
+
created_by: :unset,
|
240
|
+
x_twilio_webhook_enabled: :unset
|
241
|
+
)
|
242
|
+
|
243
|
+
data = Twilio::Values.of({
|
244
|
+
'FriendlyName' => friendly_name,
|
245
|
+
'UniqueName' => unique_name,
|
246
|
+
'Attributes' => attributes,
|
247
|
+
'DateCreated' => Twilio.serialize_iso8601_datetime(date_created),
|
248
|
+
'DateUpdated' => Twilio.serialize_iso8601_datetime(date_updated),
|
249
|
+
'CreatedBy' => created_by,
|
250
|
+
})
|
251
|
+
|
252
|
+
headers = Twilio::Values.of({ 'X-Twilio-Webhook-Enabled' => x_twilio_webhook_enabled, })
|
253
|
+
payload = @version.update('POST', @uri, data: data, headers: headers)
|
254
|
+
ChannelInstance.new(
|
255
|
+
@version,
|
256
|
+
payload,
|
257
|
+
service_sid: @solution[:service_sid],
|
258
|
+
sid: @solution[:sid],
|
259
|
+
)
|
260
|
+
end
|
261
|
+
|
262
|
+
##
|
263
|
+
# Access the webhooks
|
264
|
+
# @return [WebhookList]
|
265
|
+
# @return [WebhookContext] if sid was passed.
|
266
|
+
def webhooks(sid=:unset)
|
267
|
+
|
268
|
+
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
269
|
+
|
270
|
+
if sid != :unset
|
271
|
+
return WebhookContext.new(@version, @solution[:service_sid], @solution[:sid],sid )
|
272
|
+
end
|
273
|
+
|
274
|
+
unless @webhooks
|
275
|
+
@webhooks = WebhookList.new(
|
276
|
+
@version, service_sid: @solution[:service_sid], channel_sid: @solution[:sid], )
|
277
|
+
end
|
278
|
+
|
279
|
+
@webhooks
|
280
|
+
end
|
281
|
+
##
|
282
|
+
# Access the members
|
283
|
+
# @return [MemberList]
|
284
|
+
# @return [MemberContext] if sid was passed.
|
285
|
+
def members(sid=:unset)
|
286
|
+
|
287
|
+
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
288
|
+
|
289
|
+
if sid != :unset
|
290
|
+
return MemberContext.new(@version, @solution[:service_sid], @solution[:sid],sid )
|
291
|
+
end
|
292
|
+
|
293
|
+
unless @members
|
294
|
+
@members = MemberList.new(
|
295
|
+
@version, service_sid: @solution[:service_sid], channel_sid: @solution[:sid], )
|
296
|
+
end
|
297
|
+
|
298
|
+
@members
|
299
|
+
end
|
300
|
+
##
|
301
|
+
# Access the messages
|
302
|
+
# @return [MessageList]
|
303
|
+
# @return [MessageContext] if sid was passed.
|
304
|
+
def messages(sid=:unset)
|
305
|
+
|
306
|
+
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
307
|
+
|
308
|
+
if sid != :unset
|
309
|
+
return MessageContext.new(@version, @solution[:service_sid], @solution[:sid],sid )
|
310
|
+
end
|
311
|
+
|
312
|
+
unless @messages
|
313
|
+
@messages = MessageList.new(
|
314
|
+
@version, service_sid: @solution[:service_sid], channel_sid: @solution[:sid], )
|
315
|
+
end
|
316
|
+
|
317
|
+
@messages
|
318
|
+
end
|
319
|
+
##
|
320
|
+
# Access the invites
|
321
|
+
# @return [InviteList]
|
322
|
+
# @return [InviteContext] if sid was passed.
|
323
|
+
def invites(sid=:unset)
|
324
|
+
|
325
|
+
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
326
|
+
|
327
|
+
if sid != :unset
|
328
|
+
return InviteContext.new(@version, @solution[:service_sid], @solution[:sid],sid )
|
329
|
+
end
|
330
|
+
|
331
|
+
unless @invites
|
332
|
+
@invites = InviteList.new(
|
333
|
+
@version, service_sid: @solution[:service_sid], channel_sid: @solution[:sid], )
|
334
|
+
end
|
335
|
+
|
336
|
+
@invites
|
337
|
+
end
|
338
|
+
|
339
|
+
##
|
340
|
+
# Provide a user friendly representation
|
341
|
+
def to_s
|
342
|
+
context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
|
343
|
+
"#<Twilio.Chat.V2.ChannelContext #{context}>"
|
344
|
+
end
|
345
|
+
|
346
|
+
##
|
347
|
+
# Provide a detailed, user friendly representation
|
348
|
+
def inspect
|
349
|
+
context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
|
350
|
+
"#<Twilio.Chat.V2.ChannelContext #{context}>"
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
class ChannelPage < Page
|
355
|
+
##
|
356
|
+
# Initialize the ChannelPage
|
357
|
+
# @param [Version] version Version that contains the resource
|
358
|
+
# @param [Response] response Response from the API
|
359
|
+
# @param [Hash] solution Path solution for the resource
|
360
|
+
# @return [ChannelPage] ChannelPage
|
361
|
+
def initialize(version, response, solution)
|
362
|
+
super(version, response)
|
363
|
+
|
364
|
+
# Path Solution
|
365
|
+
@solution = solution
|
366
|
+
end
|
367
|
+
|
368
|
+
##
|
369
|
+
# Build an instance of ChannelInstance
|
370
|
+
# @param [Hash] payload Payload response from the API
|
371
|
+
# @return [ChannelInstance] ChannelInstance
|
372
|
+
def get_instance(payload)
|
373
|
+
ChannelInstance.new(@version, payload, service_sid: @solution[:service_sid])
|
374
|
+
end
|
375
|
+
|
376
|
+
##
|
377
|
+
# Provide a user friendly representation
|
378
|
+
def to_s
|
379
|
+
'<Twilio.Chat.V2.ChannelPage>'
|
380
|
+
end
|
381
|
+
end
|
382
|
+
class ChannelInstance < InstanceResource
|
383
|
+
##
|
384
|
+
# Initialize the ChannelInstance
|
385
|
+
# @param [Version] version Version that contains the resource
|
386
|
+
# @param [Hash] payload payload that contains response from Twilio
|
387
|
+
# @param [String] account_sid The SID of the
|
388
|
+
# {Account}[https://www.twilio.com/docs/iam/api/account] that created this Channel
|
389
|
+
# resource.
|
390
|
+
# @param [String] sid The SID of the Call resource to fetch.
|
391
|
+
# @return [ChannelInstance] ChannelInstance
|
392
|
+
def initialize(version, payload , service_sid: nil, sid: nil)
|
393
|
+
super(version)
|
394
|
+
|
395
|
+
# Marshaled Properties
|
396
|
+
@properties = {
|
397
|
+
'sid' => payload['sid'],
|
398
|
+
'account_sid' => payload['account_sid'],
|
399
|
+
'service_sid' => payload['service_sid'],
|
400
|
+
'friendly_name' => payload['friendly_name'],
|
401
|
+
'unique_name' => payload['unique_name'],
|
402
|
+
'attributes' => payload['attributes'],
|
403
|
+
'type' => payload['type'],
|
404
|
+
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
405
|
+
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
406
|
+
'created_by' => payload['created_by'],
|
407
|
+
'members_count' => payload['members_count'] == nil ? payload['members_count'] : payload['members_count'].to_i,
|
408
|
+
'messages_count' => payload['messages_count'] == nil ? payload['messages_count'] : payload['messages_count'].to_i,
|
409
|
+
'url' => payload['url'],
|
410
|
+
'links' => payload['links'],
|
411
|
+
}
|
412
|
+
|
413
|
+
# Context
|
414
|
+
@instance_context = nil
|
415
|
+
@params = { 'service_sid' => service_sid || @properties['service_sid'] ,'sid' => sid || @properties['sid'] , }
|
416
|
+
end
|
417
|
+
|
418
|
+
##
|
419
|
+
# Generate an instance context for the instance, the context is capable of
|
420
|
+
# performing various actions. All instance actions are proxied to the context
|
421
|
+
# @return [ChannelContext] CallContext for this CallInstance
|
422
|
+
def context
|
423
|
+
unless @instance_context
|
424
|
+
@instance_context = ChannelContext.new(@version , @params['service_sid'], @params['sid'])
|
425
|
+
end
|
426
|
+
@instance_context
|
427
|
+
end
|
428
|
+
|
429
|
+
##
|
430
|
+
# @return [String] The unique string that we created to identify the Channel resource.
|
431
|
+
def sid
|
432
|
+
@properties['sid']
|
433
|
+
end
|
434
|
+
|
435
|
+
##
|
436
|
+
# @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Channel resource.
|
437
|
+
def account_sid
|
438
|
+
@properties['account_sid']
|
439
|
+
end
|
440
|
+
|
441
|
+
##
|
442
|
+
# @return [String] The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) the Channel resource is associated with.
|
443
|
+
def service_sid
|
444
|
+
@properties['service_sid']
|
445
|
+
end
|
446
|
+
|
447
|
+
##
|
448
|
+
# @return [String] The string that you assigned to describe the resource.
|
449
|
+
def friendly_name
|
450
|
+
@properties['friendly_name']
|
451
|
+
end
|
452
|
+
|
453
|
+
##
|
454
|
+
# @return [String] An application-defined string that uniquely identifies the resource. It can be used to address the resource in place of the resource's `sid` in the URL.
|
455
|
+
def unique_name
|
456
|
+
@properties['unique_name']
|
457
|
+
end
|
458
|
+
|
459
|
+
##
|
460
|
+
# @return [String] The JSON string that stores application-specific data. If attributes have not been set, `{}` is returned.
|
461
|
+
def attributes
|
462
|
+
@properties['attributes']
|
463
|
+
end
|
464
|
+
|
465
|
+
##
|
466
|
+
# @return [ChannelType]
|
467
|
+
def type
|
468
|
+
@properties['type']
|
469
|
+
end
|
470
|
+
|
471
|
+
##
|
472
|
+
# @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
473
|
+
def date_created
|
474
|
+
@properties['date_created']
|
475
|
+
end
|
476
|
+
|
477
|
+
##
|
478
|
+
# @return [Time] The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
479
|
+
def date_updated
|
480
|
+
@properties['date_updated']
|
481
|
+
end
|
482
|
+
|
483
|
+
##
|
484
|
+
# @return [String] The `identity` of the User that created the channel. If the Channel was created by using the API, the value is `system`.
|
485
|
+
def created_by
|
486
|
+
@properties['created_by']
|
487
|
+
end
|
488
|
+
|
489
|
+
##
|
490
|
+
# @return [String] The number of Members in the Channel.
|
491
|
+
def members_count
|
492
|
+
@properties['members_count']
|
493
|
+
end
|
494
|
+
|
495
|
+
##
|
496
|
+
# @return [String] The number of Messages that have been passed in the Channel.
|
497
|
+
def messages_count
|
498
|
+
@properties['messages_count']
|
499
|
+
end
|
500
|
+
|
501
|
+
##
|
502
|
+
# @return [String] The absolute URL of the Channel resource.
|
503
|
+
def url
|
504
|
+
@properties['url']
|
505
|
+
end
|
506
|
+
|
507
|
+
##
|
508
|
+
# @return [Hash] The absolute URLs of the [Members](https://www.twilio.com/docs/chat/rest/member-resource), [Messages](https://www.twilio.com/docs/chat/rest/message-resource), [Invites](https://www.twilio.com/docs/chat/rest/invite-resource), Webhooks and, if it exists, the last [Message](https://www.twilio.com/docs/chat/rest/message-resource) for the Channel.
|
509
|
+
def links
|
510
|
+
@properties['links']
|
511
|
+
end
|
512
|
+
|
513
|
+
##
|
514
|
+
# Delete the ChannelInstance
|
515
|
+
# @param [ChannelEnumWebhookEnabledType] x_twilio_webhook_enabled The X-Twilio-Webhook-Enabled HTTP request header
|
516
|
+
# @return [Boolean] True if delete succeeds, false otherwise
|
517
|
+
def delete(
|
518
|
+
x_twilio_webhook_enabled: :unset
|
519
|
+
)
|
520
|
+
|
521
|
+
context.delete(
|
522
|
+
x_twilio_webhook_enabled: x_twilio_webhook_enabled,
|
523
|
+
)
|
524
|
+
end
|
525
|
+
|
526
|
+
##
|
527
|
+
# Fetch the ChannelInstance
|
528
|
+
# @return [ChannelInstance] Fetched ChannelInstance
|
529
|
+
def fetch
|
530
|
+
|
531
|
+
context.fetch
|
532
|
+
end
|
533
|
+
|
534
|
+
##
|
535
|
+
# Update the ChannelInstance
|
536
|
+
# @param [String] friendly_name A descriptive string that you create to describe the resource. It can be up to 256 characters long.
|
537
|
+
# @param [String] unique_name An application-defined string that uniquely identifies the resource. It can be used to address the resource in place of the resource's `sid` in the URL. This value must be 256 characters or less in length and unique within the Service.
|
538
|
+
# @param [String] attributes A valid JSON string that contains application-specific data.
|
539
|
+
# @param [Time] date_created The date, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, to assign to the resource as the date it was created. The default value is the current time set by the Chat service. Note that this should only be used in cases where a Channel is being recreated from a backup/separate source.
|
540
|
+
# @param [Time] date_updated The date, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format, to assign to the resource as the date it was last updated.
|
541
|
+
# @param [String] created_by The `identity` of the User that created the channel. Default is: `system`.
|
542
|
+
# @param [ChannelEnumWebhookEnabledType] x_twilio_webhook_enabled The X-Twilio-Webhook-Enabled HTTP request header
|
543
|
+
# @return [ChannelInstance] Updated ChannelInstance
|
544
|
+
def update(
|
545
|
+
friendly_name: :unset,
|
546
|
+
unique_name: :unset,
|
547
|
+
attributes: :unset,
|
548
|
+
date_created: :unset,
|
549
|
+
date_updated: :unset,
|
550
|
+
created_by: :unset,
|
551
|
+
x_twilio_webhook_enabled: :unset
|
552
|
+
)
|
553
|
+
|
554
|
+
context.update(
|
555
|
+
friendly_name: friendly_name,
|
556
|
+
unique_name: unique_name,
|
557
|
+
attributes: attributes,
|
558
|
+
date_created: date_created,
|
559
|
+
date_updated: date_updated,
|
560
|
+
created_by: created_by,
|
561
|
+
x_twilio_webhook_enabled: x_twilio_webhook_enabled,
|
562
|
+
)
|
563
|
+
end
|
564
|
+
|
565
|
+
##
|
566
|
+
# Access the webhooks
|
567
|
+
# @return [webhooks] webhooks
|
568
|
+
def webhooks
|
569
|
+
context.webhooks
|
570
|
+
end
|
571
|
+
|
572
|
+
##
|
573
|
+
# Access the members
|
574
|
+
# @return [members] members
|
575
|
+
def members
|
576
|
+
context.members
|
577
|
+
end
|
578
|
+
|
579
|
+
##
|
580
|
+
# Access the messages
|
581
|
+
# @return [messages] messages
|
582
|
+
def messages
|
583
|
+
context.messages
|
584
|
+
end
|
585
|
+
|
586
|
+
##
|
587
|
+
# Access the invites
|
588
|
+
# @return [invites] invites
|
589
|
+
def invites
|
590
|
+
context.invites
|
591
|
+
end
|
592
|
+
|
593
|
+
##
|
594
|
+
# Provide a user friendly representation
|
595
|
+
def to_s
|
596
|
+
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
597
|
+
"<Twilio.Chat.V2.ChannelInstance #{values}>"
|
598
|
+
end
|
599
|
+
|
600
|
+
##
|
601
|
+
# Provide a detailed, user friendly representation
|
602
|
+
def inspect
|
603
|
+
values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
|
604
|
+
"<Twilio.Chat.V2.ChannelInstance #{values}>"
|
605
|
+
end
|
606
|
+
end
|
607
|
+
|
608
|
+
end
|
609
|
+
end
|
610
|
+
end
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
|