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

Public Class Methods

new(version, response, solution) click to toggle source

Initialize the StepPage @param [Version] version Version that contains the resource @param [Response] response Response from the API @param [Hash] solution Path solution for the resource @return [StepPage] StepPage

Calls superclass method Twilio::REST::Page::new
    # File lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb
124 def initialize(version, response, solution)
125   super(version, response)
126 
127   # Path Solution
128   @solution = solution
129 end

Public Instance Methods

get_instance(payload) click to toggle source

Build an instance of StepInstance @param [Hash] payload Payload response from the API @return [StepInstance] StepInstance

    # File lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb
135 def get_instance(payload)
136   StepInstance.new(
137       @version,
138       payload,
139       flow_sid: @solution[:flow_sid],
140       engagement_sid: @solution[:engagement_sid],
141   )
142 end
to_s() click to toggle source

Provide a user friendly representation

    # File lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb
146 def to_s
147   '<Twilio.Studio.V1.StepPage>'
148 end