Class: Twilio::REST::Supersim::V1::EsimProfileContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/supersim/v1/esim_profile.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ EsimProfileContext

Initialize the EsimProfileContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The SID of the eSIM Profile resource to fetch.



180
181
182
183
184
185
186
187
188
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 180

def initialize(version, sid)
    super(version)

    # Path Solution
    @solution = { sid: sid,  }
    @uri = "/ESimProfiles/#{@solution[:sid]}"

    
end

Instance Method Details

#fetchEsimProfileInstance

Fetch the EsimProfileInstance

Returns:



192
193
194
195
196
197
198
199
200
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 192

def fetch

    payload = @version.fetch('GET', @uri)
    EsimProfileInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



212
213
214
215
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 212

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Supersim.V1.EsimProfileContext #{context}>"
end

#to_sObject

Provide a user friendly representation



205
206
207
208
# File 'lib/twilio-ruby/rest/supersim/v1/esim_profile.rb', line 205

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Supersim.V1.EsimProfileContext #{context}>"
end