Class: Twilio::REST::Pricing::V2::CountryContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Pricing::V2::CountryContext
- Defined in:
- lib/twilio-ruby/rest/pricing/v2/country.rb
Instance Method Summary collapse
-
#fetch ⇒ CountryInstance
Fetch the 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
136 137 138 139 140 141 142 143 144 |
# File 'lib/twilio-ruby/rest/pricing/v2/country.rb', line 136 def initialize(version, iso_country) super(version) # Path Solution @solution = { iso_country: iso_country, } @uri = "/Trunking/Countries/#{@solution[:iso_country]}" end |
Instance Method Details
#fetch ⇒ CountryInstance
Fetch the CountryInstance
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/twilio-ruby/rest/pricing/v2/country.rb', line 148 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) CountryInstance.new( @version, payload, iso_country: @solution[:iso_country], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
174 175 176 177 |
# File 'lib/twilio-ruby/rest/pricing/v2/country.rb', line 174 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Pricing.V2.CountryContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
167 168 169 170 |
# File 'lib/twilio-ruby/rest/pricing/v2/country.rb', line 167 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Pricing.V2.CountryContext #{context}>" end |