Class: Twilio::REST::Supersim::V1::SmsCommandInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Supersim::V1::SmsCommandInstance
- 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
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#context ⇒ SmsCommandContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The ISO 8601 date and time in GMT when the resource was last updated.
-
#direction ⇒ sms_command.Direction
The direction of the SMS Command.
-
#fetch ⇒ SmsCommandInstance
Fetch the SmsCommandInstance.
-
#initialize(version, payload, sid: nil) ⇒ SmsCommandInstance
constructor
Initialize the SmsCommandInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#payload ⇒ String
The message body of the SMS Command sent to or from the SIM.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#sim_sid ⇒ String
The SID of the SIM that this SMS Command was sent to or from.
-
#status ⇒ sms_command.Status
The status of the SMS Command.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the SMS Command resource.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ SmsCommandInstance
Initialize the SmsCommandInstance
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 261 def initialize(version, payload, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'sim_sid' => payload['sim_sid'], 'payload' => payload['payload'], 'status' => payload['status'], 'direction' => payload['direction'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], } # Context @instance_context = nil @params = {'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
301 302 303 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 301 def account_sid @properties['account_sid'] end |
#context ⇒ SmsCommandContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
286 287 288 289 290 291 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 286 def context unless @instance_context @instance_context = SmsCommandContext.new(@version, @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was created.
331 332 333 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 331 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was last updated.
337 338 339 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 337 def date_updated @properties['date_updated'] end |
#direction ⇒ sms_command.Direction
Returns The direction of the SMS Command.
325 326 327 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 325 def direction @properties['direction'] end |
#fetch ⇒ SmsCommandInstance
Fetch the SmsCommandInstance
350 351 352 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 350 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
363 364 365 366 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 363 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Supersim.V1.SmsCommandInstance #{values}>" end |
#payload ⇒ String
Returns The message body of the SMS Command sent to or from the SIM.
313 314 315 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 313 def payload @properties['payload'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
295 296 297 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 295 def sid @properties['sid'] end |
#sim_sid ⇒ String
Returns The SID of the SIM that this SMS Command was sent to or from.
307 308 309 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 307 def sim_sid @properties['sim_sid'] end |
#status ⇒ sms_command.Status
Returns The status of the SMS Command.
319 320 321 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 319 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
356 357 358 359 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 356 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Supersim.V1.SmsCommandInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the SMS Command resource.
343 344 345 |
# File 'lib/twilio-ruby/rest/supersim/v1/sms_command.rb', line 343 def url @properties['url'] end |