Class: Twilio::REST::Voice::V1::DialingPermissionsList::CountryContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb,
lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.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].

Defined Under Namespace

Classes: HighriskSpecialPrefixInstance, HighriskSpecialPrefixList, HighriskSpecialPrefixPage

Instance Method Summary collapse

Constructor Details

#initialize(version, iso_code) ⇒ CountryContext

Initialize the CountryContext

Parameters:



172
173
174
175
176
177
178
179
180
181
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb', line 172

def initialize(version, iso_code)
    super(version)

    # Path Solution
    @solution = { iso_code: iso_code,  }
    @uri = "/DialingPermissions/Countries/#{@solution[:iso_code]}"

    # Dependents
    @highrisk_special_prefixes = nil
end

Instance Method Details

#fetchCountryInstance

Fetch the CountryInstance

Returns:



185
186
187
188
189
190
191
192
193
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb', line 185

def fetch

    payload = @version.fetch('GET', @uri)
    CountryInstance.new(
        @version,
        payload,
        iso_code: @solution[:iso_code],
    )
end

#highrisk_special_prefixesHighriskSpecialPrefixList, HighriskSpecialPrefixContext

Access the highrisk_special_prefixes

Returns:



199
200
201
202
203
204
205
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb', line 199

def highrisk_special_prefixes
  unless @highrisk_special_prefixes
    @highrisk_special_prefixes = HighriskSpecialPrefixList.new(
            @version, iso_code: @solution[:iso_code], )
  end
  @highrisk_special_prefixes
end

#inspectObject

Provide a detailed, user friendly representation



216
217
218
219
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb', line 216

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Voice.V1.CountryContext #{context}>"
end

#to_sObject

Provide a user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb', line 209

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Voice.V1.CountryContext #{context}>"
end