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.



170
171
172
173
174
175
176
177
178
179
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 170

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:



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 183

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

#fetch_with_metadataParticipantInstance

Fetch the ParticipantInstanceMetadata

Returns:



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 203

def 

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

#inspectObject

Provide a detailed, user friendly representation



236
237
238
239
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 236

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

#to_sObject

Provide a user friendly representation



229
230
231
232
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 229

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