Class: Twilio::REST::Insights::V1::RoomContext::ParticipantContext
- Inherits:
-
Twilio::REST::InstanceContext
- Object
- Twilio::REST::InstanceContext
- Twilio::REST::Insights::V1::RoomContext::ParticipantContext
- 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
-
#fetch ⇒ ParticipantInstance
Fetch the ParticipantInstance.
-
#initialize(version, room_sid, participant_sid) ⇒ ParticipantContext
constructor
Initialize the ParticipantContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, room_sid, participant_sid) ⇒ ParticipantContext
Initialize the ParticipantContext
157 158 159 160 161 162 163 |
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 157 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
#fetch ⇒ ParticipantInstance
Fetch the ParticipantInstance
168 169 170 171 172 173 174 175 176 177 |
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 168 def fetch payload = @version.fetch('GET', @uri) ParticipantInstance.new( @version, payload, room_sid: @solution[:room_sid], participant_sid: @solution[:participant_sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
188 189 190 191 |
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 188 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Insights.V1.ParticipantContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
181 182 183 184 |
# File 'lib/twilio-ruby/rest/insights/v1/room/participant.rb', line 181 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Insights.V1.ParticipantContext #{context}>" end |