Class: Twilio::REST::IpMessaging::V2::ServiceContext::UserInstance
- Inherits:
-
Twilio::REST::InstanceResource
- Object
- Twilio::REST::InstanceResource
- Twilio::REST::IpMessaging::V2::ServiceContext::UserInstance
- Defined in:
- lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique id of the Account responsible for this user.
-
#attributes ⇒ String
An optional string metadata field you can use to store any data you wish.
-
#context ⇒ UserContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date that this resource was created in ISO 8601 format.
-
#date_updated ⇒ Time
The date that this resource was last updated in ISO 8601 format.
-
#delete ⇒ Boolean
Deletes the UserInstance.
-
#fetch ⇒ UserInstance
Fetch a UserInstance.
-
#friendly_name ⇒ String
The human-readable name of this user.
-
#identity ⇒ String
A unique string that identifies the user within this service - often a username or email address.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ UserInstance
constructor
Initialize the UserInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#is_notifiable ⇒ Boolean
Indicates whether the User has a potentially valid Push Notification registration for the Service instance.
-
#is_online ⇒ Boolean
Indicates whether the User is actively connected to the Service instance and online.
-
#joined_channels_count ⇒ String
The number of Channels this User is a Member of.
-
#links ⇒ String
The links.
-
#role_sid ⇒ String
The unique id of the [Role] assigned to this user.
-
#service_sid ⇒ String
The unique id of the Service this user belongs to.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(role_sid: :unset, attributes: :unset, friendly_name: :unset) ⇒ UserInstance
Update the UserInstance.
-
#url ⇒ String
An absolute URL for this user.
-
#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
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 312 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 unique id of the Account responsible for this user.
357 358 359 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 357 def account_sid @properties['account_sid'] end |
#attributes ⇒ String
Returns An optional string metadata field you can use to store any data you wish.
369 370 371 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 369 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
342 343 344 345 346 347 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 342 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 that this resource was created in ISO 8601 format.
405 406 407 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 405 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this resource was last updated in ISO 8601 format.
411 412 413 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 411 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the UserInstance
443 444 445 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 443 def delete context.delete end |
#fetch ⇒ UserInstance
Fetch a UserInstance
436 437 438 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 436 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The human-readable name of this user.
375 376 377 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 375 def friendly_name @properties['friendly_name'] end |
#identity ⇒ String
Returns A unique string that identifies the user within this service - often a username or email address.
387 388 389 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 387 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
484 485 486 487 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 484 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.IpMessaging.V2.UserInstance #{values}>" end |
#is_notifiable ⇒ Boolean
Returns Indicates whether the User has a potentially valid Push Notification registration for the Service instance.
399 400 401 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 399 def is_notifiable @properties['is_notifiable'] end |
#is_online ⇒ Boolean
Returns Indicates whether the User is actively connected to the Service instance and online.
393 394 395 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 393 def is_online @properties['is_online'] end |
#joined_channels_count ⇒ String
Returns The number of Channels this User is a Member of.
417 418 419 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 417 def joined_channels_count @properties['joined_channels_count'] end |
#links ⇒ String
Returns The links.
423 424 425 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 423 def links @properties['links'] end |
#role_sid ⇒ String
Returns The unique id of the [Role] assigned to this user.
381 382 383 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 381 def role_sid @properties['role_sid'] end |
#service_sid ⇒ String
Returns The unique id of the Service this user belongs to.
363 364 365 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 363 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns A 34 character string that uniquely identifies this resource.
351 352 353 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 351 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
477 478 479 480 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 477 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.IpMessaging.V2.UserInstance #{values}>" end |
#update(role_sid: :unset, attributes: :unset, friendly_name: :unset) ⇒ UserInstance
Update the UserInstance
457 458 459 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 457 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 An absolute URL for this user.
429 430 431 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 429 def url @properties['url'] end |
#user_bindings ⇒ user_bindings
Access the user_bindings
471 472 473 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 471 def user_bindings context.user_bindings end |
#user_channels ⇒ user_channels
Access the user_channels
464 465 466 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb', line 464 def user_channels context.user_channels end |