Class: Twilio::REST::Pricing::V1::VoiceList::NumberInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Pricing::V1::VoiceList::NumberInstance
- Defined in:
- lib/twilio-ruby/rest/pricing/v1/voice/number.rb
Instance Method Summary collapse
-
#context ⇒ NumberContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#country ⇒ String
The name of the country.
-
#fetch ⇒ NumberInstance
Fetch the NumberInstance.
- #inbound_call_price ⇒ PricingV1VoiceVoiceNumberInboundCallPrice
-
#initialize(version, payload, number: nil) ⇒ NumberInstance
constructor
Initialize the NumberInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#iso_country ⇒ String
The [ISO country code](en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
-
#number ⇒ String
The phone number.
- #outbound_call_price ⇒ PricingV1VoiceVoiceNumberOutboundCallPrice
-
#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, number: nil) ⇒ NumberInstance
Initialize the NumberInstance
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 133 def initialize(version, payload , number: nil) super(version) # Marshaled Properties @properties = { 'number' => payload['number'], 'country' => payload['country'], 'iso_country' => payload['iso_country'], 'outbound_call_price' => payload['outbound_call_price'], 'inbound_call_price' => payload['inbound_call_price'], 'price_unit' => payload['price_unit'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'number' => number || @properties['number'] , } end |
Instance Method Details
#context ⇒ NumberContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
156 157 158 159 160 161 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 156 def context unless @instance_context @instance_context = NumberContext.new(@version , @params['number']) end @instance_context end |
#country ⇒ String
Returns The name of the country.
171 172 173 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 171 def country @properties['country'] end |
#fetch ⇒ NumberInstance
Fetch the NumberInstance
208 209 210 211 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 208 def fetch context.fetch end |
#inbound_call_price ⇒ PricingV1VoiceVoiceNumberInboundCallPrice
189 190 191 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 189 def inbound_call_price @properties['inbound_call_price'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
222 223 224 225 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 222 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Pricing.V1.NumberInstance #{values}>" end |
#iso_country ⇒ String
Returns The [ISO country code](en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
177 178 179 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 177 def iso_country @properties['iso_country'] end |
#number ⇒ String
Returns The phone number.
165 166 167 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 165 def number @properties['number'] end |
#outbound_call_price ⇒ PricingV1VoiceVoiceNumberOutboundCallPrice
183 184 185 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 183 def outbound_call_price @properties['outbound_call_price'] 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`).
195 196 197 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 195 def price_unit @properties['price_unit'] end |
#to_s ⇒ Object
Provide a user friendly representation
215 216 217 218 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 215 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Pricing.V1.NumberInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the resource.
201 202 203 |
# File 'lib/twilio-ruby/rest/pricing/v1/voice/number.rb', line 201 def url @properties['url'] end |