Class: Twilio::REST::Supersim::V1::SmsCommandContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Supersim::V1::SmsCommandContext
- Defined in:
- lib/twilio-ruby/rest/supersim/v1/sms_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 ⇒ SmsCommandInstance
Fetch the SmsCommandInstance.
-
#initialize(version, sid) ⇒ SmsCommandContext
constructor
Initialize the SmsCommandContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ SmsCommandContext
Initialize the SmsCommandContext
220 221 222 223 224 225 226 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 220 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/SmsCommands/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ SmsCommandInstance
Fetch the SmsCommandInstance
231 232 233 234 235 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 231 def fetch payload = @version.fetch('GET', @uri) SmsCommandInstance.new(@version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
246 247 248 249 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 246 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.SmsCommandContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
239 240 241 242 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 239 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.SmsCommandContext #{context}>" end |