Class: Twilio::REST::Supersim::V1::EsimProfileContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Supersim::V1::EsimProfileContext
- Defined in:
- lib/twilio-ruby/rest/supersim/v1/esim_profile.rb
Instance Method Summary collapse
-
#fetch ⇒ EsimProfileInstance
Fetch the EsimProfileInstance.
-
#initialize(version, sid) ⇒ EsimProfileContext
constructor
Initialize the EsimProfileContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ EsimProfileContext
Initialize the EsimProfileContext
188 189 190 191 192 193 194 195 196 |
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 188 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/ESimProfiles/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ EsimProfileInstance
Fetch the EsimProfileInstance
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 200 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) EsimProfileInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
226 227 228 229 |
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 226 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.EsimProfileContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
219 220 221 222 |
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 219 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.EsimProfileContext #{context}>" end |