Class: Twilio::REST::Supersim::V1::IpCommandContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/supersim/v1/ip_command.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) ⇒ IpCommandContext

Initialize the IpCommandContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The SID of the IP Command resource to fetch.



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

def initialize(version, sid)
    super(version)

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

    
end

Instance Method Details

#fetchIpCommandInstance

Fetch the IpCommandInstance

Returns:



204
205
206
207
208
209
210
211
212
# File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 204

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



224
225
226
227
# File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 224

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

#to_sObject

Provide a user friendly representation



217
218
219
220
# File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 217

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