Class: Twilio::REST::Proxy::V1::ServiceContext::SessionContext::ParticipantContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Proxy::V1::ServiceContext::SessionContext::ParticipantContext
- Defined in:
- lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb,
lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Defined Under Namespace
Classes: MessageInteractionContext, MessageInteractionInstance, MessageInteractionList, MessageInteractionPage
Instance Method Summary collapse
-
#delete ⇒ Boolean
Deletes the ParticipantInstance.
-
#fetch ⇒ ParticipantInstance
Fetch a ParticipantInstance.
-
#initialize(version, service_sid, session_sid, sid) ⇒ ParticipantContext
constructor
Initialize the ParticipantContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#message_interactions(sid = :unset) ⇒ MessageInteractionList, MessageInteractionContext
Access the message_interactions.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, service_sid, session_sid, sid) ⇒ ParticipantContext
Initialize the ParticipantContext
208 209 210 211 212 213 214 215 216 217 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb', line 208 def initialize(version, service_sid, session_sid, sid) super(version) # Path Solution @solution = {service_sid: service_sid, session_sid: session_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/Sessions/#{@solution[:session_sid]}/Participants/#{@solution[:sid]}" # Dependents @message_interactions = nil end |
Instance Method Details
#delete ⇒ Boolean
Deletes the ParticipantInstance
243 244 245 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb', line 243 def delete @version.delete('delete', @uri) end |
#fetch ⇒ ParticipantInstance
Fetch a ParticipantInstance
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb', line 222 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) ParticipantInstance.new( @version, payload, service_sid: @solution[:service_sid], session_sid: @solution[:session_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
285 286 287 288 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb', line 285 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Proxy.V1.ParticipantContext #{context}>" end |
#message_interactions(sid = :unset) ⇒ MessageInteractionList, MessageInteractionContext
Access the message_interactions
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb', line 251 def (sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return MessageInteractionContext.new( @version, @solution[:service_sid], @solution[:session_sid], @solution[:sid], sid, ) end unless @message_interactions @message_interactions = MessageInteractionList.new( @version, service_sid: @solution[:service_sid], session_sid: @solution[:session_sid], participant_sid: @solution[:sid], ) end @message_interactions end |
#to_s ⇒ Object
Provide a user friendly representation
278 279 280 281 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb', line 278 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Proxy.V1.ParticipantContext #{context}>" end |