Class: Twilio::REST::Conversations::V1::ServiceContext::ParticipantConversationInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Conversations::V1::ServiceContext::ParticipantConversationInstance
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique ID of the Account responsible for this conversation.
-
#chat_service_sid ⇒ String
The unique ID of the Conversation Service this conversation belongs to.
-
#conversation_attributes ⇒ String
An optional string metadata field you can use to store any data you wish.
-
#conversation_created_by ⇒ String
Creator of this conversation.
-
#conversation_date_created ⇒ Time
The date that this conversation was created.
-
#conversation_date_updated ⇒ Time
The date that this conversation was last updated.
-
#conversation_friendly_name ⇒ String
The human-readable name of this conversation.
-
#conversation_sid ⇒ String
The unique ID of the Conversation this Participant belongs to.
-
#conversation_state ⇒ participant_conversation.State
The current state of this User Conversation.
-
#conversation_timers ⇒ Hash
Timer date values for this conversation.
-
#conversation_unique_name ⇒ String
An application-defined string that uniquely identifies the Conversation resource.
-
#initialize(version, payload, chat_service_sid: nil) ⇒ ParticipantConversationInstance
constructor
Initialize the ParticipantConversationInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
Absolute URLs to access the participant and conversation of this Participant Conversation.
-
#participant_identity ⇒ String
A unique string identifier for the conversation participant as Conversation User.
-
#participant_messaging_binding ⇒ Hash
Information about how this participant exchanges messages with the conversation.
-
#participant_sid ⇒ String
The unique ID of the Participant.
-
#participant_user_sid ⇒ String
The unique ID for the conversation participant as Conversation User.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, payload, chat_service_sid: nil) ⇒ ParticipantConversationInstance
Initialize the ParticipantConversationInstance
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 188 def initialize(version, payload, chat_service_sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'chat_service_sid' => payload['chat_service_sid'], 'participant_sid' => payload['participant_sid'], 'participant_user_sid' => payload['participant_user_sid'], 'participant_identity' => payload['participant_identity'], 'participant_messaging_binding' => payload['participant_messaging_binding'], 'conversation_sid' => payload['conversation_sid'], 'conversation_unique_name' => payload['conversation_unique_name'], 'conversation_friendly_name' => payload['conversation_friendly_name'], 'conversation_attributes' => payload['conversation_attributes'], 'conversation_date_created' => Twilio.deserialize_iso8601_datetime(payload['conversation_date_created']), 'conversation_date_updated' => Twilio.deserialize_iso8601_datetime(payload['conversation_date_updated']), 'conversation_created_by' => payload['conversation_created_by'], 'conversation_state' => payload['conversation_state'], 'conversation_timers' => payload['conversation_timers'], 'links' => payload['links'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique ID of the Account responsible for this conversation.
214 215 216 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 214 def account_sid @properties['account_sid'] end |
#chat_service_sid ⇒ String
Returns The unique ID of the Conversation Service this conversation belongs to.
220 221 222 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 220 def chat_service_sid @properties['chat_service_sid'] end |
#conversation_attributes ⇒ String
Returns An optional string metadata field you can use to store any data you wish.
268 269 270 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 268 def conversation_attributes @properties['conversation_attributes'] end |
#conversation_created_by ⇒ String
Returns Creator of this conversation.
286 287 288 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 286 def conversation_created_by @properties['conversation_created_by'] end |
#conversation_date_created ⇒ Time
Returns The date that this conversation was created.
274 275 276 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 274 def conversation_date_created @properties['conversation_date_created'] end |
#conversation_date_updated ⇒ Time
Returns The date that this conversation was last updated.
280 281 282 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 280 def conversation_date_updated @properties['conversation_date_updated'] end |
#conversation_friendly_name ⇒ String
Returns The human-readable name of this conversation.
262 263 264 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 262 def conversation_friendly_name @properties['conversation_friendly_name'] end |
#conversation_sid ⇒ String
Returns The unique ID of the Conversation this Participant belongs to.
250 251 252 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 250 def conversation_sid @properties['conversation_sid'] end |
#conversation_state ⇒ participant_conversation.State
Returns The current state of this User Conversation.
292 293 294 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 292 def conversation_state @properties['conversation_state'] end |
#conversation_timers ⇒ Hash
Returns Timer date values for this conversation.
298 299 300 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 298 def conversation_timers @properties['conversation_timers'] end |
#conversation_unique_name ⇒ String
Returns An application-defined string that uniquely identifies the Conversation resource.
256 257 258 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 256 def conversation_unique_name @properties['conversation_unique_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
316 317 318 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 316 def inspect "<Twilio.Conversations.V1.ParticipantConversationInstance>" end |
#links ⇒ String
Returns Absolute URLs to access the participant and conversation of this Participant Conversation.
304 305 306 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 304 def links @properties['links'] end |
#participant_identity ⇒ String
Returns A unique string identifier for the conversation participant as Conversation User.
238 239 240 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 238 def participant_identity @properties['participant_identity'] end |
#participant_messaging_binding ⇒ Hash
Returns Information about how this participant exchanges messages with the conversation.
244 245 246 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 244 def participant_messaging_binding @properties['participant_messaging_binding'] end |
#participant_sid ⇒ String
Returns The unique ID of the Participant.
226 227 228 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 226 def participant_sid @properties['participant_sid'] end |
#participant_user_sid ⇒ String
Returns The unique ID for the conversation participant as Conversation User.
232 233 234 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 232 def participant_user_sid @properties['participant_user_sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
310 311 312 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb', line 310 def to_s "<Twilio.Conversations.V1.ParticipantConversationInstance>" end |