Class: Twilio::REST::Pricing::V1::VoiceList::CountryInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Pricing::V1::VoiceList::CountryInstance
- Defined in:
- lib/twilio-ruby/rest/pricing/v1/voice/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.
-
#inbound_call_prices ⇒ Array<PricingV1VoiceVoiceCountryInstanceInboundCallPrices>
The list of [InboundCallPrice](www.twilio.com/docs/voice/pricing#inbound-call-price) records.
-
#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).
-
#outbound_prefix_prices ⇒ Array<PricingV1VoiceVoiceCountryInstanceOutboundPrefixPrices>
The list of OutboundPrefixPrice records, which include a list of the
prefixes, thefriendly_name,base_price, and thecurrent_pricefor those prefixes. -
#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 394 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 377 def initialize(version, payload , iso_country: nil) super(version) # Marshaled Properties @properties = { 'country' => payload['country'], 'iso_country' => payload['iso_country'], 'outbound_prefix_prices' => payload['outbound_prefix_prices'], 'inbound_call_prices' => payload['inbound_call_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
400 401 402 403 404 405 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 400 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.
409 410 411 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 409 def country @properties['country'] end |
#fetch ⇒ CountryInstance
Fetch the CountryInstance
446 447 448 449 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 446 def fetch context.fetch end |
#inbound_call_prices ⇒ Array<PricingV1VoiceVoiceCountryInstanceInboundCallPrices>
Returns The list of [InboundCallPrice](www.twilio.com/docs/voice/pricing#inbound-call-price) records.
427 428 429 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 427 def inbound_call_prices @properties['inbound_call_prices'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
460 461 462 463 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 460 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).
415 416 417 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 415 def iso_country @properties['iso_country'] end |
#outbound_prefix_prices ⇒ Array<PricingV1VoiceVoiceCountryInstanceOutboundPrefixPrices>
Returns The list of OutboundPrefixPrice records, which include a list of the prefixes, the friendly_name, base_price, and the current_price for those prefixes.
421 422 423 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 421 def outbound_prefix_prices @properties['outbound_prefix_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).
433 434 435 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 433 def price_unit @properties['price_unit'] end |
#to_s ⇒ Object
Provide a user friendly representation
453 454 455 456 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 453 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.
439 440 441 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/country.rb', line 439 def url @properties['url'] end |