Class: Twilio::REST::Conversations::V1::UserInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Conversations::V1::UserInstance
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/user.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the User resource.
-
#attributes ⇒ String
The JSON Object string that stores application-specific data.
-
#chat_service_sid ⇒ String
The SID of the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource) the User resource is associated with.
-
#context ⇒ UserContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#date_updated ⇒ Time
The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean
Delete the UserInstance.
-
#fetch ⇒ UserInstance
Fetch the UserInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#identity ⇒ String
The application-defined string that uniquely identifies the resource’s User within the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource).
-
#initialize(version, payload, sid: nil) ⇒ UserInstance
constructor
Initialize the UserInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#is_notifiable ⇒ Boolean
Whether the User has a potentially valid Push Notification registration (APN or GCM) for this Conversations Service.
-
#is_online ⇒ Boolean
Whether the User is actively connected to this Conversations Service and online.
- #links ⇒ Hash
-
#role_sid ⇒ String
The SID of a service-level [Role](www.twilio.com/docs/conversations/api/role-resource) assigned to the user.
-
#sid ⇒ String
The unique string that we created to identify the User resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, attributes: :unset, role_sid: :unset, x_twilio_webhook_enabled: :unset) ⇒ UserInstance
Update the UserInstance.
-
#url ⇒ String
An absolute API resource URL for this user.
-
#user_conversations ⇒ user_conversations
Access the user_conversations.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ UserInstance
Initialize the UserInstance
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 585 def initialize(version, payload , sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'chat_service_sid' => payload['chat_service_sid'], 'role_sid' => payload['role_sid'], 'identity' => payload['identity'], 'friendly_name' => payload['friendly_name'], 'attributes' => payload['attributes'], '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']), 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = { 'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the User resource.
630 631 632 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 630 def account_sid @properties['account_sid'] end |
#attributes ⇒ String
Returns The JSON Object string that stores application-specific data. If attributes have not been set, ‘{}` is returned.
660 661 662 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 660 def attributes @properties['attributes'] end |
#chat_service_sid ⇒ String
Returns The SID of the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource) the User resource is associated with.
636 637 638 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 636 def chat_service_sid @properties['chat_service_sid'] 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
615 616 617 618 619 620 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 615 def context unless @instance_context @instance_context = UserContext.new(@version , @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
678 679 680 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 678 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
684 685 686 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 684 def date_updated @properties['date_updated'] end |
#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean
Delete the UserInstance
704 705 706 707 708 709 710 711 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 704 def delete( x_twilio_webhook_enabled: :unset ) context.delete( x_twilio_webhook_enabled: x_twilio_webhook_enabled, ) end |
#fetch ⇒ UserInstance
Fetch the UserInstance
716 717 718 719 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 716 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
654 655 656 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 654 def friendly_name @properties['friendly_name'] end |
#identity ⇒ String
Returns The application-defined string that uniquely identifies the resource’s User within the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource). This value is often a username or an email address, and is case-sensitive.
648 649 650 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 648 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
759 760 761 762 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 759 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.UserInstance #{values}>" end |
#is_notifiable ⇒ Boolean
Returns Whether the User has a potentially valid Push Notification registration (APN or GCM) for this Conversations Service. If at least one registration exists, true; otherwise false. This value is only returned by Fetch actions that return a single resource and null is always returned by a Read action. This value is null if the Service’s reachability_enabled is false, and if the User has never had a notification registration, even if the Service’s reachability_enabled is true.
672 673 674 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 672 def is_notifiable @properties['is_notifiable'] end |
#is_online ⇒ Boolean
Returns Whether the User is actively connected to this Conversations Service and online. This value is only returned by Fetch actions that return a single resource and null is always returned by a Read action. This value is null if the Service’s reachability_enabled is false, if the User has never been online for this Conversations Service, even if the Service’s reachability_enabled is true.
666 667 668 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 666 def is_online @properties['is_online'] end |
#links ⇒ Hash
696 697 698 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 696 def links @properties['links'] end |
#role_sid ⇒ String
Returns The SID of a service-level [Role](www.twilio.com/docs/conversations/api/role-resource) assigned to the user.
642 643 644 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 642 def role_sid @properties['role_sid'] end |
#sid ⇒ String
Returns The unique string that we created to identify the User resource.
624 625 626 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 624 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
752 753 754 755 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 752 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.UserInstance #{values}>" end |
#update(friendly_name: :unset, attributes: :unset, role_sid: :unset, x_twilio_webhook_enabled: :unset) ⇒ UserInstance
Update the UserInstance
728 729 730 731 732 733 734 735 736 737 738 739 740 741 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 728 def update( friendly_name: :unset, attributes: :unset, role_sid: :unset, x_twilio_webhook_enabled: :unset ) context.update( friendly_name: friendly_name, attributes: attributes, role_sid: role_sid, x_twilio_webhook_enabled: x_twilio_webhook_enabled, ) end |
#url ⇒ String
Returns An absolute API resource URL for this user.
690 691 692 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 690 def url @properties['url'] end |
#user_conversations ⇒ user_conversations
Access the user_conversations
746 747 748 |
# File 'lib/twilio-ruby/rest/conversations/v1/user.rb', line 746 def user_conversations context.user_conversations end |