Class: Twilio::REST::Supersim::V1::IpCommandContext
- Inherits:
 - 
      InstanceContext
      
        
- Object
 - InstanceContext
 - Twilio::REST::Supersim::V1::IpCommandContext
 
 
- 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
- 
  
    
      #fetch  ⇒ IpCommandInstance 
    
    
  
  
  
  
  
  
  
  
  
    
Fetch the IpCommandInstance.
 - 
  
    
      #initialize(version, sid)  ⇒ IpCommandContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
Initialize the IpCommandContext.
 - 
  
    
      #inspect  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide a detailed, user friendly representation.
 - 
  
    
      #to_s  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide a user friendly representation.
 
Constructor Details
#initialize(version, sid) ⇒ IpCommandContext
Initialize the IpCommandContext
      240 241 242 243 244 245 246  | 
    
      # File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 240 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/IpCommands/#{@solution[:sid]}" end  | 
  
Instance Method Details
#fetch ⇒ IpCommandInstance
Fetch the IpCommandInstance
      251 252 253 254 255  | 
    
      # File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 251 def fetch payload = @version.fetch('GET', @uri) IpCommandInstance.new(@version, payload, sid: @solution[:sid], ) end  | 
  
#inspect ⇒ Object
Provide a detailed, user friendly representation
      266 267 268 269  | 
    
      # File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 266 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.IpCommandContext #{context}>" end  | 
  
#to_s ⇒ Object
Provide a user friendly representation
      259 260 261 262  | 
    
      # File 'lib/twilio-ruby/rest/supersim/v1/ip_command.rb', line 259 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.IpCommandContext #{context}>" end  |