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.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, iso_country) ⇒ CountryContext
Initialize the CountryContext
152 153 154 155 156 157 158 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 152 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
163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 163 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) CountryInstance.new(@version, payload, iso_country: @solution[:iso_country], ) end |
#to_s ⇒ Object
Provide a user friendly representation
177 178 179 180 |
# File 'lib/twilio-ruby/rest/pricing/v2/voice/country.rb', line 177 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Pricing.V2.CountryContext #{context}>" end |