class Twilio::REST::Studio::V1::FlowContext::EngagementContext::StepContext::StepContextList
Public Class Methods
new(version, flow_sid: nil, engagement_sid: nil, step_sid: nil)
click to toggle source
Initialize the StepContextList
@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. @param [String] step_sid The SID of the Step the context is associated with. @return [StepContextList] StepContextList
Calls superclass method
Twilio::REST::ListResource::new
# File lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb 24 def initialize(version, flow_sid: nil, engagement_sid: nil, step_sid: nil) 25 super(version) 26 27 # Path Solution 28 @solution = {flow_sid: flow_sid, engagement_sid: engagement_sid, step_sid: step_sid} 29 end
Public Instance Methods
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb 33 def to_s 34 '#<Twilio.Studio.V1.StepContextList>' 35 end