Class: Twilio::REST::Pricing::V1::PhoneNumberList::CountryInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, iso_country: nil) ⇒ CountryInstance

Initialize the CountryInstance

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

  • sid (String)

    The SID of the Call resource to fetch.



211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 211

def initialize(version, payload , iso_country: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'country' => payload['country'],
        'iso_country' => payload['iso_country'],
        'phone_number_prices' => payload['phone_number_prices'],
        'price_unit' => payload['price_unit'],
        'url' => payload['url'],
    }

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

Instance Method Details

#contextCountryContext

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

Returns:



232
233
234
235
236
237
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 232

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

#countryString

Returns The name of the country.

Returns:

  • (String)

    The name of the country.



241
242
243
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 241

def country
    @properties['country']
end

#fetchCountryInstance

Fetch the CountryInstance

Returns:



272
273
274
275
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 272

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



286
287
288
289
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 286

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

#iso_countryString

Returns The [ISO country code](en.wikipedia.org/wiki/ISO_3166-1_alpha-2).

Returns:



247
248
249
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 247

def iso_country
    @properties['iso_country']
end

#phone_number_pricesArray<PricingV1PhoneNumberPhoneNumberCountryInstancePhoneNumberPrices>

Returns The list of [PhoneNumberPrice](www.twilio.com/docs/phone-numbers/pricing#phone-number-price) records.

Returns:



253
254
255
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 253

def phone_number_prices
    @properties['phone_number_prices']
end

#price_unitString

Returns The currency in which prices are measured, specified in [ISO 4127](www.iso.org/iso/home/standards/currency_codes.htm) format (e.g. ‘usd`, `eur`, `jpy`).

Returns:



259
260
261
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 259

def price_unit
    @properties['price_unit']
end

#to_sObject

Provide a user friendly representation



279
280
281
282
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 279

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

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource.



265
266
267
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 265

def url
    @properties['url']
end