Class: Twilio::REST::Chat::V2::ServiceContext::ChannelContext::WebhookContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Chat::V2::ServiceContext::ChannelContext::WebhookContext
- Defined in:
- lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the WebhookInstance.
-
#fetch ⇒ WebhookInstance
Fetch the WebhookInstance.
-
#initialize(version, service_sid, channel_sid, sid) ⇒ WebhookContext
constructor
Initialize the WebhookContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(configuration_url: :unset, configuration_method: :unset, configuration_filters: :unset, configuration_triggers: :unset, configuration_flow_sid: :unset, configuration_retry_count: :unset) ⇒ WebhookInstance
Update the WebhookInstance.
Constructor Details
#initialize(version, service_sid, channel_sid, sid) ⇒ WebhookContext
Initialize the WebhookContext
214 215 216 217 218 219 220 |
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 214 def initialize(version, service_sid, channel_sid, sid) super(version) # Path Solution @solution = {service_sid: service_sid, channel_sid: channel_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/Channels/#{@solution[:channel_sid]}/Webhooks/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the WebhookInstance
284 285 286 |
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 284 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ WebhookInstance
Fetch the WebhookInstance
225 226 227 228 229 230 231 232 233 234 235 |
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 225 def fetch payload = @version.fetch('GET', @uri) WebhookInstance.new( @version, payload, service_sid: @solution[:service_sid], channel_sid: @solution[:channel_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
297 298 299 300 |
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 297 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Chat.V2.WebhookContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
290 291 292 293 |
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 290 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Chat.V2.WebhookContext #{context}>" end |
#update(configuration_url: :unset, configuration_method: :unset, configuration_filters: :unset, configuration_triggers: :unset, configuration_flow_sid: :unset, configuration_retry_count: :unset) ⇒ WebhookInstance
Update the WebhookInstance
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 260 def update(configuration_url: :unset, configuration_method: :unset, configuration_filters: :unset, configuration_triggers: :unset, configuration_flow_sid: :unset, configuration_retry_count: :unset) data = Twilio::Values.of({ 'Configuration.Url' => configuration_url, 'Configuration.Method' => configuration_method, 'Configuration.Filters' => Twilio.serialize_list(configuration_filters) { |e| e }, 'Configuration.Triggers' => Twilio.serialize_list(configuration_triggers) { |e| e }, 'Configuration.FlowSid' => configuration_flow_sid, 'Configuration.RetryCount' => configuration_retry_count, }) payload = @version.update('POST', @uri, data: data) WebhookInstance.new( @version, payload, service_sid: @solution[:service_sid], channel_sid: @solution[:channel_sid], sid: @solution[:sid], ) end |