Class: Twilio::REST::Chat::V2::ServiceContext::UserInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Chat::V2::ServiceContext::UserInstance
- Defined in:
- lib/twilio-ruby/rest/chat/v2/service/user.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The account_sid.
-
#attributes ⇒ String
The attributes.
-
#context ⇒ UserContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date_created.
-
#date_updated ⇒ Time
The date_updated.
-
#delete ⇒ Boolean
Deletes the UserInstance.
-
#fetch ⇒ UserInstance
Fetch a UserInstance.
-
#friendly_name ⇒ String
The friendly_name.
-
#identity ⇒ String
The identity.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ UserInstance
constructor
Initialize the UserInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#is_notifiable ⇒ Boolean
The is_notifiable.
-
#is_online ⇒ Boolean
The is_online.
-
#joined_channels_count ⇒ String
The joined_channels_count.
-
#links ⇒ String
The links.
-
#role_sid ⇒ String
The role_sid.
-
#service_sid ⇒ String
The service_sid.
-
#sid ⇒ String
The sid.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(role_sid: :unset, attributes: :unset, friendly_name: :unset) ⇒ UserInstance
Update the UserInstance.
-
#url ⇒ String
The url.
-
#user_bindings ⇒ user_bindings
Access the user_bindings.
-
#user_channels ⇒ user_channels
Access the user_channels.
Constructor Details
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ UserInstance
Initialize the UserInstance
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 288 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_sid ⇒ String
Returns The account_sid.
333 334 335 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 333 def account_sid @properties['account_sid'] end |
#attributes ⇒ String
Returns The attributes.
345 346 347 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 345 def attributes @properties['attributes'] end |
#context ⇒ UserContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
318 319 320 321 322 323 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 318 def context unless @instance_context @instance_context = UserContext.new(@version, @params['service_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date_created.
381 382 383 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 381 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date_updated.
387 388 389 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 387 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the UserInstance
419 420 421 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 419 def delete context.delete end |
#fetch ⇒ UserInstance
Fetch a UserInstance
412 413 414 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 412 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The friendly_name.
351 352 353 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 351 def friendly_name @properties['friendly_name'] end |
#identity ⇒ String
Returns The identity.
363 364 365 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 363 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
456 457 458 459 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 456 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Chat.V2.UserInstance #{values}>" end |
#is_notifiable ⇒ Boolean
Returns The is_notifiable.
375 376 377 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 375 def is_notifiable @properties['is_notifiable'] end |
#is_online ⇒ Boolean
Returns The is_online.
369 370 371 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 369 def is_online @properties['is_online'] end |
#joined_channels_count ⇒ String
Returns The joined_channels_count.
393 394 395 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 393 def joined_channels_count @properties['joined_channels_count'] end |
#links ⇒ String
Returns The links.
399 400 401 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 399 def links @properties['links'] end |
#role_sid ⇒ String
Returns The role_sid.
357 358 359 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 357 def role_sid @properties['role_sid'] end |
#service_sid ⇒ String
Returns The service_sid.
339 340 341 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 339 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns The sid.
327 328 329 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 327 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
449 450 451 452 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 449 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) ⇒ UserInstance
Update the UserInstance
429 430 431 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 429 def update(role_sid: :unset, attributes: :unset, friendly_name: :unset) context.update(role_sid: role_sid, attributes: attributes, friendly_name: friendly_name, ) end |
#url ⇒ String
Returns The url.
405 406 407 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 405 def url @properties['url'] end |
#user_bindings ⇒ user_bindings
Access the user_bindings
443 444 445 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 443 def user_bindings context.user_bindings end |
#user_channels ⇒ user_channels
Access the user_channels
436 437 438 |
# File 'lib/twilio-ruby/rest/chat/v2/service/user.rb', line 436 def user_channels context.user_channels end |