Class: Twilio::REST::Studio::V2::FlowContext::ExecutionContext::ExecutionStepContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Studio::V2::FlowContext::ExecutionContext::ExecutionStepContext
- Defined in:
- lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb,
lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb
Defined Under Namespace
Classes: ExecutionStepContextContext, ExecutionStepContextInstance, ExecutionStepContextList, ExecutionStepContextPage
Instance Method Summary collapse
-
#fetch ⇒ ExecutionStepInstance
Fetch the ExecutionStepInstance.
-
#initialize(version, flow_sid, execution_sid, sid) ⇒ ExecutionStepContext
constructor
Initialize the ExecutionStepContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#step_context ⇒ ExecutionStepContextList, ExecutionStepContextContext
Access the step_context.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, flow_sid, execution_sid, sid) ⇒ ExecutionStepContext
Initialize the ExecutionStepContext
141 142 143 144 145 146 147 148 149 150 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb', line 141 def initialize(version, flow_sid, execution_sid, sid) super(version) # Path Solution @solution = { flow_sid: flow_sid, execution_sid: execution_sid, sid: sid, } @uri = "/Flows/#{@solution[:flow_sid]}/Executions/#{@solution[:execution_sid]}/Steps/#{@solution[:sid]}" # Dependents @step_context = nil end |
Instance Method Details
#fetch ⇒ ExecutionStepInstance
Fetch the ExecutionStepInstance
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb', line 154 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) ExecutionStepInstance.new( @version, payload, flow_sid: @solution[:flow_sid], execution_sid: @solution[:execution_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
194 195 196 197 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb', line 194 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Studio.V2.ExecutionStepContext #{context}>" end |
#step_context ⇒ ExecutionStepContextList, ExecutionStepContextContext
Access the step_context
176 177 178 179 180 181 182 183 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb', line 176 def step_context ExecutionStepContextContext.new( @version, @solution[:flow_sid], @solution[:execution_sid], @solution[:sid] ) end |
#to_s ⇒ Object
Provide a user friendly representation
187 188 189 190 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb', line 187 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Studio.V2.ExecutionStepContext #{context}>" end |