Class: Twilio::REST::Conversations::V1::ConversationContext::ParticipantInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, conversation_sid: nil, sid: nil) ⇒ ParticipantInstance

Initialize the ParticipantInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • conversation_sid (String) (defaults to: nil)

    The unique ID of the Conversation for this participant.

  • sid (String) (defaults to: nil)

    A 34 character string that uniquely identifies this resource.



309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 309

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'],
  }

  # Context
  @instance_context = nil
  @params = {'conversation_sid' => conversation_sid, 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The unique ID of the Account responsible for this participant.

Returns:

  • (String)

    The unique ID of the Account responsible for this participant.



344
345
346
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 344

def 
  @properties['account_sid']
end

#attributesString

Returns An optional string metadata field you can use to store any data you wish.

Returns:

  • (String)

    An optional string metadata field you can use to store any data you wish.



368
369
370
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 368

def attributes
  @properties['attributes']
end

#contextParticipantContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



335
336
337
338
339
340
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 335

def context
  unless @instance_context
    @instance_context = ParticipantContext.new(@version, @params['conversation_sid'], @params['sid'], )
  end
  @instance_context
end

#conversation_sidString

Returns The unique ID of the Conversation for this participant.

Returns:

  • (String)

    The unique ID of the Conversation for this participant.



350
351
352
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 350

def conversation_sid
  @properties['conversation_sid']
end

#date_createdTime

Returns The date that this resource was created.

Returns:

  • (Time)

    The date that this resource was created.



386
387
388
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 386

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date that this resource was last updated.

Returns:

  • (Time)

    The date that this resource was last updated.



392
393
394
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 392

def date_updated
  @properties['date_updated']
end

#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean

Delete the ParticipantInstance

Parameters:

  • x_twilio_webhook_enabled (participant.WebhookEnabledType) (defaults to: :unset)

    The X-Twilio-Webhook-Enabled HTTP request header

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



443
444
445
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 443

def delete(x_twilio_webhook_enabled: :unset)
  context.delete(x_twilio_webhook_enabled: x_twilio_webhook_enabled, )
end

#fetchParticipantInstance

Fetch the ParticipantInstance

Returns:



450
451
452
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 450

def fetch
  context.fetch
end

#identityString

Returns A unique string identifier for the conversation participant as Conversation User.

Returns:

  • (String)

    A unique string identifier for the conversation participant as Conversation User.



362
363
364
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 362

def identity
  @properties['identity']
end

#inspectObject

Provide a detailed, user friendly representation



463
464
465
466
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 463

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Conversations.V1.ParticipantInstance #{values}>"
end

#messaging_bindingHash

Returns Information about how this participant exchanges messages with the conversation.

Returns:

  • (Hash)

    Information about how this participant exchanges messages with the conversation.



374
375
376
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 374

def messaging_binding
  @properties['messaging_binding']
end

#role_sidString

Returns The SID of a conversation-level Role to assign to the participant.

Returns:

  • (String)

    The SID of a conversation-level Role to assign to the participant



380
381
382
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 380

def role_sid
  @properties['role_sid']
end

#sidString

Returns A 34 character string that uniquely identifies this resource.

Returns:

  • (String)

    A 34 character string that uniquely identifies this resource.



356
357
358
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 356

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation



456
457
458
459
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 456

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, x_twilio_webhook_enabled: :unset) ⇒ ParticipantInstance

Update the ParticipantInstance

Parameters:

  • date_created (Time) (defaults to: :unset)

    The date that this resource was created.

  • date_updated (Time) (defaults to: :unset)

    The date that this resource was last updated.

  • attributes (String) (defaults to: :unset)

    An optional string metadata field you can use to store any data you wish. The string value must contain structurally valid JSON if specified. Note that if the attributes are not set “{}” will be returned.

  • role_sid (String) (defaults to: :unset)

    The SID of a conversation-level Role to assign to the participant.

  • messaging_binding_proxy_address (String) (defaults to: :unset)

    The address of the Twilio phone number that the participant is in contact with. ‘null’ value will remove it.

  • messaging_binding_projected_address (String) (defaults to: :unset)

    The address of the Twilio phone number that is used in Group MMS. ‘null’ value will remove it.

  • identity (String) (defaults to: :unset)

    A unique string identifier for the conversation participant as Conversation User. This parameter is non-null if (and only if) the participant is using the Conversations SDK to communicate. Limited to 256 characters.

  • x_twilio_webhook_enabled (participant.WebhookEnabledType) (defaults to: :unset)

    The X-Twilio-Webhook-Enabled HTTP request header

Returns:



425
426
427
428
429
430
431
432
433
434
435
436
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 425

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, 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,
      x_twilio_webhook_enabled: x_twilio_webhook_enabled,
  )
end

#urlString

Returns An absolute URL for this participant.

Returns:

  • (String)

    An absolute URL for this participant.



398
399
400
# File 'lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb', line 398

def url
  @properties['url']
end