Class: Twilio::REST::Conversations::V1::AddressConfigurationInstance

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

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ AddressConfigurationInstance

Initialize the AddressConfigurationInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this AddressConfiguration resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 318

def initialize(version, payload , sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'account_sid' => payload['account_sid'],
        'type' => payload['type'],
        'address' => payload['address'],
        'friendly_name' => payload['friendly_name'],
        'auto_creation' => payload['auto_creation'],
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
        'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
        'url' => payload['url'],
        'address_country' => payload['address_country'],
    }

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

Instance Method Details

#account_sidString

Returns The unique ID of the [Account](www.twilio.com/docs/iam/api/account) the address belongs to.

Returns:



359
360
361
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 359

def 
    @properties['account_sid']
end

#addressString

Returns The unique address to be configured. The address can be a whatsapp address or phone number.

Returns:

  • (String)

    The unique address to be configured. The address can be a whatsapp address or phone number



371
372
373
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 371

def address
    @properties['address']
end

#address_countryString

Returns An ISO 3166-1 alpha-2n country code which the address belongs to. This is currently only applicable to short code addresses.

Returns:

  • (String)

    An ISO 3166-1 alpha-2n country code which the address belongs to. This is currently only applicable to short code addresses.



407
408
409
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 407

def address_country
    @properties['address_country']
end

#auto_creationHash

Returns Auto Creation configuration for the address.

Returns:

  • (Hash)

    Auto Creation configuration for the address.



383
384
385
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 383

def auto_creation
    @properties['auto_creation']
end

#contextAddressConfigurationContext

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

Returns:



344
345
346
347
348
349
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 344

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

#date_createdTime

Returns The date that this resource was created.

Returns:

  • (Time)

    The date that this resource was created.



389
390
391
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 389

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.



395
396
397
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 395

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the AddressConfigurationInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



414
415
416
417
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 414

def delete

    context.delete
end

#fetchAddressConfigurationInstance

Fetch the AddressConfigurationInstance

Returns:



422
423
424
425
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 422

def fetch

    context.fetch
end

#friendly_nameString

Returns The human-readable name of this configuration, limited to 256 characters. Optional.

Returns:

  • (String)

    The human-readable name of this configuration, limited to 256 characters. Optional.



377
378
379
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 377

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



473
474
475
476
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 473

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

#sidString

Returns A 34 character string that uniquely identifies this resource.

Returns:

  • (String)

    A 34 character string that uniquely identifies this resource.



353
354
355
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 353

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



466
467
468
469
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 466

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

#typeString

Returns Type of Address, value can be ‘whatsapp` or `sms`.

Returns:

  • (String)

    Type of Address, value can be ‘whatsapp` or `sms`.



365
366
367
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 365

def type
    @properties['type']
end

#update(friendly_name: :unset, auto_creation_enabled: :unset, auto_creation_type: :unset, auto_creation_conversation_service_sid: :unset, auto_creation_webhook_url: :unset, auto_creation_webhook_method: :unset, auto_creation_webhook_filters: :unset, auto_creation_studio_flow_sid: :unset, auto_creation_studio_retry_count: :unset) ⇒ AddressConfigurationInstance

Update the AddressConfigurationInstance

Parameters:

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

    The human-readable name of this configuration, limited to 256 characters. Optional.

  • auto_creation_enabled (Boolean) (defaults to: :unset)

    Enable/Disable auto-creating conversations for messages to this address

  • auto_creation_type (AutoCreationType) (defaults to: :unset)
  • auto_creation_conversation_service_sid (String) (defaults to: :unset)

    Conversation Service for the auto-created conversation. If not set, the conversation is created in the default service.

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

    For type ‘webhook`, the url for the webhook request.

  • auto_creation_webhook_method (Method) (defaults to: :unset)
  • auto_creation_webhook_filters (Array[String]) (defaults to: :unset)

    The list of events, firing webhook event for this Conversation. Values can be any of the following: ‘onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationStateUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onDeliveryUpdated`

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

    For type ‘studio`, the studio flow SID where the webhook should be sent to.

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

    For type ‘studio`, number of times to retry the webhook request

Returns:



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 439

def update(
    friendly_name: :unset, 
    auto_creation_enabled: :unset, 
    auto_creation_type: :unset, 
    auto_creation_conversation_service_sid: :unset, 
    auto_creation_webhook_url: :unset, 
    auto_creation_webhook_method: :unset, 
    auto_creation_webhook_filters: :unset, 
    auto_creation_studio_flow_sid: :unset, 
    auto_creation_studio_retry_count: :unset
)

    context.update(
        friendly_name: friendly_name, 
        auto_creation_enabled: auto_creation_enabled, 
        auto_creation_type: auto_creation_type, 
        auto_creation_conversation_service_sid: auto_creation_conversation_service_sid, 
        auto_creation_webhook_url: auto_creation_webhook_url, 
        auto_creation_webhook_method: auto_creation_webhook_method, 
        auto_creation_webhook_filters: auto_creation_webhook_filters, 
        auto_creation_studio_flow_sid: auto_creation_studio_flow_sid, 
        auto_creation_studio_retry_count: auto_creation_studio_retry_count, 
    )
end

#urlString

Returns An absolute API resource URL for this address configuration.

Returns:

  • (String)

    An absolute API resource URL for this address configuration.



401
402
403
# File 'lib/twilio-ruby/rest/conversations/v1/address_configuration.rb', line 401

def url
    @properties['url']
end