Class: Twilio::REST::Voice::V1::DialingPermissionsList::BulkCountryUpdateInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload) ⇒ BulkCountryUpdateInstance

Initialize the BulkCountryUpdateInstance

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 BulkCountryUpdate resource.

  • sid (String)

    The SID of the Call resource to fetch.



100
101
102
103
104
105
106
107
108
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 100

def initialize(version, payload )
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'update_count' => payload['update_count'] == nil ? payload['update_count'] : payload['update_count'].to_i,
        'update_request' => payload['update_request'],
    }
end

Instance Method Details

#inspectObject

Provide a detailed, user friendly representation



131
132
133
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 131

def inspect
    "<Twilio.Voice.V1.BulkCountryUpdateInstance>"
end

#to_sObject

Provide a user friendly representation



125
126
127
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 125

def to_s
    "<Twilio.Voice.V1.BulkCountryUpdateInstance>"
end

#update_countString

Returns The number of countries updated.

Returns:

  • (String)

    The number of countries updated



113
114
115
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 113

def update_count
    @properties['update_count']
end

#update_requestString

Returns A bulk update request to change voice dialing country permissions stored as a URL-encoded, JSON array of update objects. For example : ‘[ { "iso_code": "GB", "low_risk_numbers_enabled": "true", "high_risk_special_numbers_enabled":"true", "high_risk_tollfraud_numbers_enabled": "false" } ]`.

Returns:

  • (String)

    A bulk update request to change voice dialing country permissions stored as a URL-encoded, JSON array of update objects. For example : ‘[ { "iso_code": "GB", "low_risk_numbers_enabled": "true", "high_risk_special_numbers_enabled":"true", "high_risk_tollfraud_numbers_enabled": "false" } ]`



119
120
121
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 119

def update_request
    @properties['update_request']
end