Class: Twilio::REST::Pricing::V1::PhoneNumberList::CountryInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Pricing::V1::PhoneNumberList::CountryInstance
- Defined in:
- lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb
Instance Method Summary collapse
-
#context ⇒ CountryContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#country ⇒ String
The name of the country.
-
#fetch ⇒ CountryInstance
Fetch the CountryInstance.
-
#initialize(version, payload, iso_country: nil) ⇒ CountryInstance
constructor
Initialize the CountryInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#iso_country ⇒ String
The [ISO country code](en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
-
#phone_number_prices ⇒ Array<PricingV1PhoneNumberPhoneNumberCountryInstancePhoneNumberPrices>
The list of [PhoneNumberPrice](www.twilio.com/docs/phone-numbers/pricing#phone-number-price) records.
-
#price_unit ⇒ String
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). -
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the resource.
Constructor Details
#initialize(version, payload, iso_country: nil) ⇒ CountryInstance
Initialize the CountryInstance
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 377 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
#context ⇒ CountryContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
399 400 401 402 403 404 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 399 def context unless @instance_context @instance_context = CountryContext.new(@version , @params['iso_country']) end @instance_context end |
#country ⇒ String
Returns The name of the country.
408 409 410 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 408 def country @properties['country'] end |
#fetch ⇒ CountryInstance
Fetch the CountryInstance
439 440 441 442 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 439 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
453 454 455 456 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 453 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Pricing.V1.CountryInstance #{values}>" end |
#iso_country ⇒ String
Returns The [ISO country code](en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
414 415 416 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 414 def iso_country @properties['iso_country'] end |
#phone_number_prices ⇒ Array<PricingV1PhoneNumberPhoneNumberCountryInstancePhoneNumberPrices>
Returns The list of [PhoneNumberPrice](www.twilio.com/docs/phone-numbers/pricing#phone-number-price) records.
420 421 422 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 420 def phone_number_prices @properties['phone_number_prices'] end |
#price_unit ⇒ String
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).
426 427 428 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 426 def price_unit @properties['price_unit'] end |
#to_s ⇒ Object
Provide a user friendly representation
446 447 448 449 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 446 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Pricing.V1.CountryInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the resource.
432 433 434 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 432 def url @properties['url'] end |