class Twilio::REST::Studio::V2::FlowContext::ExecutionContext::ExecutionStepContext::ExecutionStepContextList
Public Class Methods
new(version, flow_sid: nil, execution_sid: nil, step_sid: nil)
click to toggle source
Initialize the ExecutionStepContextList
@param [Version] version Version
that contains the resource @param [String] flow_sid The SID of the Flow. @param [String] execution_sid The SID of the context's Execution resource. @param [String] step_sid The SID of the Step that the context is associated
with.
@return [ExecutionStepContextList] ExecutionStepContextList
Calls superclass method
Twilio::REST::ListResource::new
# File lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb 25 def initialize(version, flow_sid: nil, execution_sid: nil, step_sid: nil) 26 super(version) 27 28 # Path Solution 29 @solution = {flow_sid: flow_sid, execution_sid: execution_sid, step_sid: step_sid} 30 end
Public Instance Methods
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb 34 def to_s 35 '#<Twilio.Studio.V2.ExecutionStepContextList>' 36 end