Class: Twilio::REST::Video::V1::RoomContext::ParticipantContext::AnonymizeList

Inherits:
ListResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_anonymize.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, room_sid: nil, sid: nil) ⇒ AnonymizeList

Initialize the AnonymizeList

Parameters:

  • version (Version)

    Version that contains the resource

  • room_sid (String) (defaults to: nil)

    The SID of the participant’s room.

  • sid (String) (defaults to: nil)

    The unique string that we created to identify the RoomParticipant resource.



23
24
25
26
27
28
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_anonymize.rb', line 23

def initialize(version, room_sid: nil, sid: nil)
  super(version)

  # Path Solution
  @solution = {room_sid: room_sid, sid: sid}
end

Instance Method Details

#to_sObject

Provide a user friendly representation



32
33
34
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_anonymize.rb', line 32

def to_s
  '#<Twilio.Video.V1.AnonymizeList>'
end