Class: Twilio::REST::Conversations::V1::ConfigurationContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Conversations::V1::ConfigurationContext
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/configuration.rb,
lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb
Defined Under Namespace
Classes: WebhookContext, WebhookInstance, WebhookList, WebhookPage
Instance Method Summary collapse
-
#fetch ⇒ ConfigurationInstance
Fetch the ConfigurationInstance.
-
#initialize(version) ⇒ ConfigurationContext
constructor
Initialize the ConfigurationContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(default_chat_service_sid: :unset, default_messaging_service_sid: :unset, default_inactive_timer: :unset, default_closed_timer: :unset) ⇒ ConfigurationInstance
Update the ConfigurationInstance.
-
#webhooks ⇒ WebhookList, WebhookContext
Access the webhooks.
Constructor Details
#initialize(version) ⇒ ConfigurationContext
Initialize the ConfigurationContext
48 49 50 51 52 53 54 55 56 57 |
# File 'lib/twilio-ruby/rest/conversations/v1/configuration.rb', line 48 def initialize(version) super(version) # Path Solution @solution = { } @uri = "/Configuration" # Dependents @webhooks = nil end |
Instance Method Details
#fetch ⇒ ConfigurationInstance
Fetch the ConfigurationInstance
61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/twilio-ruby/rest/conversations/v1/configuration.rb', line 61 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) ConfigurationInstance.new( @version, payload, ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
129 130 131 132 |
# File 'lib/twilio-ruby/rest/conversations/v1/configuration.rb', line 129 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Conversations.V1.ConfigurationContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
122 123 124 125 |
# File 'lib/twilio-ruby/rest/conversations/v1/configuration.rb', line 122 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Conversations.V1.ConfigurationContext #{context}>" end |
#update(default_chat_service_sid: :unset, default_messaging_service_sid: :unset, default_inactive_timer: :unset, default_closed_timer: :unset) ⇒ ConfigurationInstance
Update the ConfigurationInstance
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/twilio-ruby/rest/conversations/v1/configuration.rb', line 83 def update( default_chat_service_sid: :unset, default_messaging_service_sid: :unset, default_inactive_timer: :unset, default_closed_timer: :unset ) data = Twilio::Values.of({ 'DefaultChatServiceSid' => default_chat_service_sid, 'DefaultMessagingServiceSid' => default_messaging_service_sid, 'DefaultInactiveTimer' => default_inactive_timer, 'DefaultClosedTimer' => default_closed_timer, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) ConfigurationInstance.new( @version, payload, ) end |
#webhooks ⇒ WebhookList, WebhookContext
Access the webhooks
114 115 116 117 118 |
# File 'lib/twilio-ruby/rest/conversations/v1/configuration.rb', line 114 def webhooks WebhookContext.new( @version ) end |