Class: Twilio::REST::Preview::Sync::ServiceContext::SyncListContext::SyncListItemInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::Sync::ServiceContext::SyncListContext::SyncListItemInstance
- Defined in:
- lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb
Instance Method Summary collapse
- #account_sid ⇒ String
-
#context ⇒ SyncListItemContext
Generate an instance context for the instance, the context is capable of performing various actions.
- #created_by ⇒ String
- #data ⇒ Hash
- #date_created ⇒ Time
- #date_updated ⇒ Time
-
#delete(if_match: :unset) ⇒ Boolean
Delete the SyncListItemInstance.
-
#fetch ⇒ SyncListItemInstance
Fetch the SyncListItemInstance.
- #index ⇒ String
-
#initialize(version, payload, service_sid: nil, list_sid: nil, index: nil) ⇒ SyncListItemInstance
constructor
Initialize the SyncListItemInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
- #list_sid ⇒ String
- #revision ⇒ String
- #service_sid ⇒ String
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(data: nil, if_match: :unset) ⇒ SyncListItemInstance
Update the SyncListItemInstance.
- #url ⇒ String
Constructor Details
#initialize(version, payload, service_sid: nil, list_sid: nil, index: nil) ⇒ SyncListItemInstance
Initialize the SyncListItemInstance
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 315 def initialize(version, payload , service_sid: nil, list_sid: nil, index: nil) super(version) # Marshaled Properties @properties = { 'index' => payload['index'] == nil ? payload['index'] : payload['index'].to_i, 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'list_sid' => payload['list_sid'], 'url' => payload['url'], 'revision' => payload['revision'], 'data' => payload['data'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'created_by' => payload['created_by'], } # Context @instance_context = nil @params = { 'service_sid' => service_sid || @properties['service_sid'] ,'list_sid' => list_sid || @properties['list_sid'] ,'index' => index || @properties['index'] , } end |
Instance Method Details
#account_sid ⇒ String
356 357 358 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 356 def account_sid @properties['account_sid'] end |
#context ⇒ SyncListItemContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
341 342 343 344 345 346 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 341 def context unless @instance_context @instance_context = SyncListItemContext.new(@version , @params['service_sid'], @params['list_sid'], @params['index']) end @instance_context end |
#created_by ⇒ String
404 405 406 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 404 def created_by @properties['created_by'] end |
#data ⇒ Hash
386 387 388 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 386 def data @properties['data'] end |
#date_created ⇒ Time
392 393 394 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 392 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
398 399 400 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 398 def date_updated @properties['date_updated'] end |
#delete(if_match: :unset) ⇒ Boolean
Delete the SyncListItemInstance
412 413 414 415 416 417 418 419 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 412 def delete( if_match: :unset ) context.delete( if_match: if_match, ) end |
#fetch ⇒ SyncListItemInstance
Fetch the SyncListItemInstance
424 425 426 427 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 424 def fetch context.fetch end |
#index ⇒ String
350 351 352 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 350 def index @properties['index'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
454 455 456 457 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 454 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Sync.SyncListItemInstance #{values}>" end |
#list_sid ⇒ String
368 369 370 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 368 def list_sid @properties['list_sid'] end |
#revision ⇒ String
380 381 382 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 380 def revision @properties['revision'] end |
#service_sid ⇒ String
362 363 364 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 362 def service_sid @properties['service_sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
447 448 449 450 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 447 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Sync.SyncListItemInstance #{values}>" end |
#update(data: nil, if_match: :unset) ⇒ SyncListItemInstance
Update the SyncListItemInstance
434 435 436 437 438 439 440 441 442 443 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 434 def update( data: nil, if_match: :unset ) context.update( data: data, if_match: if_match, ) end |
#url ⇒ String
374 375 376 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 374 def url @properties['url'] end |