Class: Twilio::REST::Preview::Sync::ServiceContext::SyncMapInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::Sync::ServiceContext::SyncMapInstance
- Defined in:
- lib/twilio-ruby/rest/preview/sync/service/sync_map.rb
Instance Method Summary collapse
- #account_sid ⇒ String
-
#context ⇒ SyncMapContext
Generate an instance context for the instance, the context is capable of performing various actions.
- #created_by ⇒ String
- #date_created ⇒ Time
- #date_updated ⇒ Time
-
#delete ⇒ Boolean
Delete the SyncMapInstance.
-
#fetch ⇒ SyncMapInstance
Fetch the SyncMapInstance.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ SyncMapInstance
constructor
Initialize the SyncMapInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
- #links ⇒ Hash
- #revision ⇒ String
- #service_sid ⇒ String
- #sid ⇒ String
-
#sync_map_items ⇒ sync_map_items
Access the sync_map_items.
-
#sync_map_permissions ⇒ sync_map_permissions
Access the sync_map_permissions.
-
#to_s ⇒ Object
Provide a user friendly representation.
- #unique_name ⇒ String
- #url ⇒ String
Constructor Details
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ SyncMapInstance
Initialize the SyncMapInstance
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 287 def initialize(version, payload , service_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'unique_name' => payload['unique_name'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'url' => payload['url'], 'links' => payload['links'], 'revision' => payload['revision'], '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'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
334 335 336 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 334 def account_sid @properties['account_sid'] end |
#context ⇒ SyncMapContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
313 314 315 316 317 318 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 313 def context unless @instance_context @instance_context = SyncMapContext.new(@version , @params['service_sid'], @params['sid']) end @instance_context end |
#created_by ⇒ String
376 377 378 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 376 def created_by @properties['created_by'] end |
#date_created ⇒ Time
364 365 366 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 364 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
370 371 372 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 370 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the SyncMapInstance
383 384 385 386 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 383 def delete context.delete end |
#fetch ⇒ SyncMapInstance
Fetch the SyncMapInstance
391 392 393 394 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 391 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
419 420 421 422 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 419 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Sync.SyncMapInstance #{values}>" end |
#links ⇒ Hash
352 353 354 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 352 def links @properties['links'] end |
#revision ⇒ String
358 359 360 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 358 def revision @properties['revision'] end |
#service_sid ⇒ String
340 341 342 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 340 def service_sid @properties['service_sid'] end |
#sid ⇒ String
322 323 324 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 322 def sid @properties['sid'] end |
#sync_map_items ⇒ sync_map_items
Access the sync_map_items
399 400 401 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 399 def sync_map_items context.sync_map_items end |
#sync_map_permissions ⇒ sync_map_permissions
Access the sync_map_permissions
406 407 408 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 406 def context. end |
#to_s ⇒ Object
Provide a user friendly representation
412 413 414 415 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 412 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Sync.SyncMapInstance #{values}>" end |
#unique_name ⇒ String
328 329 330 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 328 def unique_name @properties['unique_name'] end |
#url ⇒ String
346 347 348 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_map.rb', line 346 def url @properties['url'] end |