Class: Twilio::REST::Supersim::V1::NetworkContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Supersim::V1::NetworkContext
- Defined in:
- lib/twilio-ruby/rest/supersim/v1/network.rb
Instance Method Summary collapse
-
#fetch ⇒ NetworkInstance
Fetch the NetworkInstance.
-
#initialize(version, sid) ⇒ NetworkContext
constructor
Initialize the NetworkContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ NetworkContext
Initialize the NetworkContext
154 155 156 157 158 159 160 161 162 |
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 154 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/Networks/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ NetworkInstance
Fetch the NetworkInstance
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 166 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) NetworkInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
192 193 194 195 |
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 192 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.NetworkContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
185 186 187 188 |
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 185 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.NetworkContext #{context}>" end |