Class: Twilio::REST::Pricing::V2::VoiceList::CountryContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Pricing::V2::VoiceList::CountryContext
- Defined in:
- lib/twilio-ruby/rest/pricing/v2/voice/country.rb
Instance Method Summary collapse
-
#fetch ⇒ CountryInstance
Fetch a CountryInstance.
-
#initialize(version, iso_country) ⇒ CountryContext
constructor
Initialize the CountryContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, iso_country) ⇒ CountryContext
Initialize the CountryContext
153 154 155 156 157 158 159 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 153 def initialize(version, iso_country) super(version) # Path Solution @solution = {iso_country: iso_country, } @uri = "/Voice/Countries/#{@solution[:iso_country]}" end |
Instance Method Details
#fetch ⇒ CountryInstance
Fetch a CountryInstance
164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 164 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) CountryInstance.new(@version, payload, iso_country: @solution[:iso_country], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
185 186 187 188 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 185 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Pricing.V2.CountryContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
178 179 180 181 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 178 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Pricing.V2.CountryContext #{context}>" end |