class Twilio::REST::Studio::V1::FlowContext::EngagementContext::EngagementContextList

Public Class Methods

new(version, flow_sid: nil, engagement_sid: nil) click to toggle source

Initialize the EngagementContextList @param [Version] version Version that contains the resource @param [String] flow_sid The SID of the Flow. @param [String] engagement_sid The SID of the Engagement. @return [EngagementContextList] EngagementContextList

Calls superclass method Twilio::REST::ListResource::new
   # File lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb
22 def initialize(version, flow_sid: nil, engagement_sid: nil)
23   super(version)
24 
25   # Path Solution
26   @solution = {flow_sid: flow_sid, engagement_sid: engagement_sid}
27 end

Public Instance Methods

to_s() click to toggle source

Provide a user friendly representation

   # File lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb
31 def to_s
32   '#<Twilio.Studio.V1.EngagementContextList>'
33 end