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
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 220 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
241 242 243 244 245 246 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 241 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.
250 251 252 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 250 def country @properties['country'] end |
#fetch ⇒ CountryInstance
Fetch the CountryInstance
281 282 283 284 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 281 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
295 296 297 298 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 295 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).
256 257 258 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 256 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.
262 263 264 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 262 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`).
268 269 270 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 268 def price_unit @properties['price_unit'] end |
#to_s ⇒ Object
Provide a user friendly representation
288 289 290 291 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 288 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.
274 275 276 |
# File 'lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb', line 274 def url @properties['url'] end |