Class: Twilio::REST::Preview::Wireless::CommandContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Preview::Wireless::CommandContext
- Defined in:
- lib/twilio-ruby/rest/preview/wireless/command.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].
Instance Method Summary collapse
-
#fetch ⇒ CommandInstance
Fetch the CommandInstance.
-
#initialize(version, sid) ⇒ CommandContext
constructor
Initialize the CommandContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ CommandContext
Initialize the CommandContext
195 196 197 198 199 200 201 202 203 |
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 195 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/Commands/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ CommandInstance
Fetch the CommandInstance
207 208 209 210 211 212 213 214 215 |
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 207 def fetch payload = @version.fetch('GET', @uri) CommandInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
227 228 229 230 |
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 227 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Wireless.CommandContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
220 221 222 223 |
# File 'lib/twilio-ruby/rest/preview/wireless/command.rb', line 220 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Wireless.CommandContext #{context}>" end |