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
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
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
#fetch ⇒ ParticipantInstance
Fetch the ParticipantInstance
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 |
#inspect ⇒ Object
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_s ⇒ Object
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 |