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.



107
108
109
110
111
112
113
114
115
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 107

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



138
139
140
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb', line 138

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

#to_sObject

Provide a user friendly representation



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

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

#update_countString

Returns The number of countries updated.

Returns:

  • (String)

    The number of countries updated



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

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" } ]`



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

def update_request
    @properties['update_request']
end