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

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

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

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.



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

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:



149
150
151
152
153
154
155
156
157
158
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 149

def fetch

    payload = @version.fetch('GET', @uri)
    ParticipantInstance.new(
        @version,
        payload,
        room_sid: @solution[:room_sid],
        participant_sid: @solution[:participant_sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



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

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

#to_sObject

Provide a user friendly representation



163
164
165
166
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 163

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