Class: Twilio::REST::Insights::V1::RoomContext::ParticipantContext

Inherits:
Twilio::REST::InstanceContext show all
Defined in:
lib/twilio-ruby/rest/insights/v1/room/participant.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, room_sid, participant_sid) ⇒ ParticipantContext

Initialize the ParticipantContext

Parameters:

  • version (Version)

    Version that contains the resource

  • room_sid (String)

    The SID of the Room resource.

  • participant_sid (String)

    The SID of the Participant resource.



139
140
141
142
143
144
145
146
147
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 139

def initialize(version, room_sid, participant_sid)
    super(version)

    # Path Solution
    @solution = { room_sid: room_sid, participant_sid: participant_sid,  }
    @uri = "/Video/Rooms/#{@solution[:room_sid]}/Participants/#{@solution[:participant_sid]}"

    
end

Instance Method Details

#fetchParticipantInstance

Fetch the ParticipantInstance

Returns:



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 151

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    ParticipantInstance.new(
        @version,
        payload,
        room_sid: @solution[:room_sid],
        participant_sid: @solution[:participant_sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



178
179
180
181
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 178

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Insights.V1.ParticipantContext #{context}>"
end

#to_sObject

Provide a user friendly representation



171
172
173
174
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 171

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Insights.V1.ParticipantContext #{context}>"
end