## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module REST class Studio < Domain class V1 < Version class FlowContext < InstanceContext class EngagementContext < InstanceContext class StepContext < InstanceContext ## # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution. class StepContextList < ListResource ## # Initialize the StepContextList # @param [Version] version Version that contains the resource # @param [String] flow_sid The flow_sid # @param [String] engagement_sid The engagement_sid # @param [String] step_sid The step_sid # @return [StepContextList] StepContextList def initialize(version, flow_sid: nil, engagement_sid: nil, step_sid: nil) super(version) # Path Solution @solution = {flow_sid: flow_sid, engagement_sid: engagement_sid, step_sid: step_sid} end ## # Provide a user friendly representation def to_s '#' end end ## # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution. class StepContextPage < Page ## # Initialize the StepContextPage # @param [Version] version Version that contains the resource # @param [Response] response Response from the API # @param [Hash] solution Path solution for the resource # @return [StepContextPage] StepContextPage def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end ## # Build an instance of StepContextInstance # @param [Hash] payload Payload response from the API # @return [StepContextInstance] StepContextInstance def get_instance(payload) StepContextInstance.new( @version, payload, flow_sid: @solution[:flow_sid], engagement_sid: @solution[:engagement_sid], step_sid: @solution[:step_sid], ) end ## # Provide a user friendly representation def to_s '' end end ## # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution. class StepContextContext < InstanceContext ## # Initialize the StepContextContext # @param [Version] version Version that contains the resource # @param [String] flow_sid The flow_sid # @param [String] engagement_sid The engagement_sid # @param [String] step_sid The step_sid # @return [StepContextContext] StepContextContext def initialize(version, flow_sid, engagement_sid, step_sid) super(version) # Path Solution @solution = {flow_sid: flow_sid, engagement_sid: engagement_sid, step_sid: step_sid, } @uri = "/Flows/#{@solution[:flow_sid]}/Engagements/#{@solution[:engagement_sid]}/Steps/#{@solution[:step_sid]}/Context" end ## # Fetch a StepContextInstance # @return [StepContextInstance] Fetched StepContextInstance def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) StepContextInstance.new( @version, payload, flow_sid: @solution[:flow_sid], engagement_sid: @solution[:engagement_sid], step_sid: @solution[:step_sid], ) end ## # Provide a user friendly representation def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#" end end ## # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution. class StepContextInstance < InstanceResource ## # Initialize the StepContextInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio # @param [String] flow_sid The flow_sid # @param [String] engagement_sid The engagement_sid # @param [String] step_sid The step_sid # @return [StepContextInstance] StepContextInstance def initialize(version, payload, flow_sid: nil, engagement_sid: nil, step_sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'context' => payload['context'], 'engagement_sid' => payload['engagement_sid'], 'flow_sid' => payload['flow_sid'], 'step_sid' => payload['step_sid'], 'url' => payload['url'], } # Context @instance_context = nil @params = {'flow_sid' => flow_sid, 'engagement_sid' => engagement_sid, 'step_sid' => step_sid, } end ## # Generate an instance context for the instance, the context is capable of # performing various actions. All instance actions are proxied to the context # @return [StepContextContext] StepContextContext for this StepContextInstance def context unless @instance_context @instance_context = StepContextContext.new( @version, @params['flow_sid'], @params['engagement_sid'], @params['step_sid'], ) end @instance_context end ## # @return [String] The account_sid def account_sid @properties['account_sid'] end ## # @return [Hash] The context def context @properties['context'] end ## # @return [String] The engagement_sid def engagement_sid @properties['engagement_sid'] end ## # @return [String] The flow_sid def flow_sid @properties['flow_sid'] end ## # @return [String] The step_sid def step_sid @properties['step_sid'] end ## # @return [String] The url def url @properties['url'] end ## # Fetch a StepContextInstance # @return [StepContextInstance] Fetched StepContextInstance def fetch context.fetch end ## # Provide a user friendly representation def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "" end ## # Provide a detailed, user friendly representation def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "" end end end end end end end end end