Class: Twilio::REST::Conversations::V1::ConversationContext::WebhookInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, conversation_sid: nil, sid: nil) ⇒ WebhookInstance

Initialize the WebhookInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • conversation_sid (String) (defaults to: nil)

    The unique id of the [Conversation](www.twilio.com/docs/conversations/api/conversation-resource) for this webhook.

  • sid (String) (defaults to: nil)

    A 34 character string that uniquely identifies this resource.



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 298

def initialize(version, payload, conversation_sid: nil, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'account_sid' => payload['account_sid'],
      'conversation_sid' => payload['conversation_sid'],
      'target' => payload['target'],
      'url' => payload['url'],
      'configuration' => payload['configuration'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
  }

  # Context
  @instance_context = nil
  @params = {'conversation_sid' => conversation_sid, 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The unique id of the Account responsible for this conversation.

Returns:

  • (String)

    The unique id of the Account responsible for this conversation.



337
338
339
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 337

def 
  @properties['account_sid']
end

#configurationHash

Returns The configuration of this webhook.

Returns:

  • (Hash)

    The configuration of this webhook.



361
362
363
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 361

def configuration
  @properties['configuration']
end

#contextWebhookContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



322
323
324
325
326
327
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 322

def context
  unless @instance_context
    @instance_context = WebhookContext.new(@version, @params['conversation_sid'], @params['sid'], )
  end
  @instance_context
end

#conversation_sidString

Returns The unique id of the Conversation for this webhook.

Returns:

  • (String)

    The unique id of the Conversation for this webhook.



343
344
345
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 343

def conversation_sid
  @properties['conversation_sid']
end

#date_createdTime

Returns The date that this resource was created.

Returns:

  • (Time)

    The date that this resource was created.



367
368
369
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 367

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date that this resource was last updated.

Returns:

  • (Time)

    The date that this resource was last updated.



373
374
375
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 373

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the WebhookInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



410
411
412
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 410

def delete
  context.delete
end

#fetchWebhookInstance

Fetch a WebhookInstance

Returns:



380
381
382
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 380

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



423
424
425
426
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 423

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Conversations.V1.WebhookInstance #{values}>"
end

#sidString

Returns A 34 character string that uniquely identifies this resource.

Returns:

  • (String)

    A 34 character string that uniquely identifies this resource.



331
332
333
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 331

def sid
  @properties['sid']
end

#targetString

Returns The target of this webhook.

Returns:

  • (String)

    The target of this webhook.



349
350
351
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 349

def target
  @properties['target']
end

#to_sObject

Provide a user friendly representation



416
417
418
419
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 416

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Conversations.V1.WebhookInstance #{values}>"
end

#update(configuration_url: :unset, configuration_method: :unset, configuration_filters: :unset, configuration_triggers: :unset, configuration_flow_sid: :unset) ⇒ WebhookInstance

Update the WebhookInstance

Parameters:

  • configuration_url (String) (defaults to: :unset)

    The absolute url the webhook request should be sent to.

  • configuration_method (webhook.Method) (defaults to: :unset)

    The HTTP method to be used when sending a webhook request.

  • configuration_filters (String) (defaults to: :unset)

    The list of events, firing webhook event for this Conversation.

  • configuration_triggers (String) (defaults to: :unset)

    The list of keywords, firing webhook event for this Conversation.

  • configuration_flow_sid (String) (defaults to: :unset)

    The studio flow sid, where the webhook should be sent to.

Returns:



397
398
399
400
401
402
403
404
405
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 397

def update(configuration_url: :unset, configuration_method: :unset, configuration_filters: :unset, configuration_triggers: :unset, configuration_flow_sid: :unset)
  context.update(
      configuration_url: configuration_url,
      configuration_method: configuration_method,
      configuration_filters: configuration_filters,
      configuration_triggers: configuration_triggers,
      configuration_flow_sid: configuration_flow_sid,
  )
end

#urlString

Returns An absolute URL for this webhook.

Returns:

  • (String)

    An absolute URL for this webhook.



355
356
357
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb', line 355

def url
  @properties['url']
end