Class: Twilio::REST::Pricing::V2::CountryContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/pricing/v2/country.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, iso_country) ⇒ CountryContext

Initialize the CountryContext

Parameters:



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

#fetchCountryInstance

Fetch the CountryInstance

Returns:



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

#inspectObject

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_sObject

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