Class: Twilio::REST::Conversations::V1::ConversationContext::ParticipantInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Conversations::V1::ConversationContext::ParticipantInstance
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique ID of the [Account](www.twilio.com/docs/iam/api/account) responsible for this participant.
-
#attributes ⇒ String
An optional string metadata field you can use to store any data you wish.
-
#context ⇒ ParticipantContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#conversation_sid ⇒ String
The unique ID of the [Conversation](www.twilio.com/docs/conversations/api/conversation-resource) for this participant.
-
#date_created ⇒ Time
The date that this resource was created.
-
#date_updated ⇒ Time
The date that this resource was last updated.
-
#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean
Delete the ParticipantInstance.
-
#fetch ⇒ ParticipantInstance
Fetch the ParticipantInstance.
-
#identity ⇒ String
A unique string identifier for the conversation participant as [Conversation User](www.twilio.com/docs/conversations/api/user-resource).
-
#initialize(version, payload, conversation_sid: nil, sid: nil) ⇒ ParticipantInstance
constructor
Initialize the ParticipantInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#last_read_message_index ⇒ String
Index of last “read” message in the [Conversation](www.twilio.com/docs/conversations/api/conversation-resource) for the Participant.
-
#last_read_timestamp ⇒ String
Timestamp of last “read” message in the [Conversation](www.twilio.com/docs/conversations/api/conversation-resource) for the Participant.
-
#messaging_binding ⇒ Hash
Information about how this participant exchanges messages with the conversation.
-
#role_sid ⇒ String
The SID of a conversation-level [Role](www.twilio.com/docs/conversations/api/role-resource) to assign to the participant.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(date_created: :unset, date_updated: :unset, attributes: :unset, role_sid: :unset, messaging_binding_proxy_address: :unset, messaging_binding_projected_address: :unset, identity: :unset, last_read_message_index: :unset, last_read_timestamp: :unset, x_twilio_webhook_enabled: :unset) ⇒ ParticipantInstance
Update the ParticipantInstance.
-
#url ⇒ String
An absolute API resource URL for this participant.
Constructor Details
#initialize(version, payload, conversation_sid: nil, sid: nil) ⇒ ParticipantInstance
Initialize the ParticipantInstance
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 634 def initialize(version, payload , conversation_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'conversation_sid' => payload['conversation_sid'], 'sid' => payload['sid'], 'identity' => payload['identity'], 'attributes' => payload['attributes'], 'messaging_binding' => payload['messaging_binding'], 'role_sid' => payload['role_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], 'last_read_message_index' => payload['last_read_message_index'] == nil ? payload['last_read_message_index'] : payload['last_read_message_index'].to_i, 'last_read_timestamp' => payload['last_read_timestamp'], } # Context @instance_context = nil @params = { 'conversation_sid' => conversation_sid || @properties['conversation_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
672 673 674 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 672 def account_sid @properties['account_sid'] end |
#attributes ⇒ String
696 697 698 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 696 def attributes @properties['attributes'] end |
#context ⇒ ParticipantContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
663 664 665 666 667 668 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 663 def context unless @instance_context @instance_context = ParticipantContext.new(@version , @params['conversation_sid'], @params['sid']) end @instance_context end |
#conversation_sid ⇒ String
678 679 680 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 678 def conversation_sid @properties['conversation_sid'] end |
#date_created ⇒ Time
714 715 716 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 714 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
720 721 722 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 720 def date_updated @properties['date_updated'] end |
#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean
Delete the ParticipantInstance
746 747 748 749 750 751 752 753 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 746 def delete( x_twilio_webhook_enabled: :unset ) context.delete( x_twilio_webhook_enabled: x_twilio_webhook_enabled, ) end |
#fetch ⇒ ParticipantInstance
Fetch the ParticipantInstance
758 759 760 761 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 758 def fetch context.fetch end |
#identity ⇒ String
690 691 692 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 690 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
812 813 814 815 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 812 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.ParticipantInstance #{values}>" end |
#last_read_message_index ⇒ String
732 733 734 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 732 def @properties['last_read_message_index'] end |
#last_read_timestamp ⇒ String
738 739 740 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 738 def @properties['last_read_timestamp'] end |
#messaging_binding ⇒ Hash
702 703 704 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 702 def messaging_binding @properties['messaging_binding'] end |
#role_sid ⇒ String
708 709 710 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 708 def role_sid @properties['role_sid'] end |
#sid ⇒ String
684 685 686 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 684 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
805 806 807 808 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 805 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.ParticipantInstance #{values}>" end |
#update(date_created: :unset, date_updated: :unset, attributes: :unset, role_sid: :unset, messaging_binding_proxy_address: :unset, messaging_binding_projected_address: :unset, identity: :unset, last_read_message_index: :unset, last_read_timestamp: :unset, x_twilio_webhook_enabled: :unset) ⇒ ParticipantInstance
Update the ParticipantInstance
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 776 def update( date_created: :unset, date_updated: :unset, attributes: :unset, role_sid: :unset, messaging_binding_proxy_address: :unset, messaging_binding_projected_address: :unset, identity: :unset, last_read_message_index: :unset, last_read_timestamp: :unset, x_twilio_webhook_enabled: :unset ) context.update( date_created: date_created, date_updated: date_updated, attributes: attributes, role_sid: role_sid, messaging_binding_proxy_address: messaging_binding_proxy_address, messaging_binding_projected_address: messaging_binding_projected_address, identity: identity, last_read_message_index: , last_read_timestamp: , x_twilio_webhook_enabled: x_twilio_webhook_enabled, ) end |
#url ⇒ String
726 727 728 |
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 726 def url @properties['url'] end |