Class: Twilio::REST::Chat::V2::ServiceContext::UserInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/chat/v2/service/user.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, sid: nil) ⇒ UserInstance

Initialize the UserInstance



310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 310

def initialize(version, payload, service_sid: nil, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'account_sid' => payload['account_sid'],
      'service_sid' => payload['service_sid'],
      'attributes' => payload['attributes'],
      'friendly_name' => payload['friendly_name'],
      'role_sid' => payload['role_sid'],
      'identity' => payload['identity'],
      'is_online' => payload['is_online'],
      'is_notifiable' => payload['is_notifiable'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'joined_channels_count' => payload['joined_channels_count'].to_i,
      'links' => payload['links'],
      'url' => payload['url'],
  }

  # Context
  @instance_context = nil
  @params = {'service_sid' => service_sid, 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString



355
356
357
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 355

def 
  @properties['account_sid']
end

#attributesString



367
368
369
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 367

def attributes
  @properties['attributes']
end

#contextUserContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context



340
341
342
343
344
345
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 340

def context
  unless @instance_context
    @instance_context = UserContext.new(@version, @params['service_sid'], @params['sid'], )
  end
  @instance_context
end

#date_createdTime



403
404
405
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 403

def date_created
  @properties['date_created']
end

#date_updatedTime



409
410
411
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 409

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the UserInstance



441
442
443
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 441

def delete
  context.delete
end

#fetchUserInstance

Fetch the UserInstance



434
435
436
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 434

def fetch
  context.fetch
end

#friendly_nameString



373
374
375
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 373

def friendly_name
  @properties['friendly_name']
end

#identityString



385
386
387
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 385

def identity
  @properties['identity']
end

#inspectObject

Provide a detailed, user friendly representation



489
490
491
492
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 489

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Chat.V2.UserInstance #{values}>"
end

#is_notifiableBoolean



397
398
399
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 397

def is_notifiable
  @properties['is_notifiable']
end

#is_onlineBoolean



391
392
393
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 391

def is_online
  @properties['is_online']
end

#joined_channels_countString



415
416
417
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 415

def joined_channels_count
  @properties['joined_channels_count']
end


421
422
423
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 421

def links
  @properties['links']
end

#role_sidString



379
380
381
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 379

def role_sid
  @properties['role_sid']
end

#service_sidString



361
362
363
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 361

def service_sid
  @properties['service_sid']
end

#sidString



349
350
351
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 349

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation



482
483
484
485
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 482

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Chat.V2.UserInstance #{values}>"
end

#update(role_sid: :unset, attributes: :unset, friendly_name: :unset, x_twilio_webhook_enabled: :unset) ⇒ UserInstance

Update the UserInstance



457
458
459
460
461
462
463
464
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 457

def update(role_sid: :unset, attributes: :unset, friendly_name: :unset, x_twilio_webhook_enabled: :unset)
  context.update(
      role_sid: role_sid,
      attributes: attributes,
      friendly_name: friendly_name,
      x_twilio_webhook_enabled: x_twilio_webhook_enabled,
  )
end

#urlString



427
428
429
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 427

def url
  @properties['url']
end

#user_bindingsuser_bindings

Access the user_bindings



476
477
478
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 476

def user_bindings
  context.user_bindings
end

#user_channelsuser_channels

Access the user_channels



469
470
471
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 469

def user_channels
  context.user_channels
end