Class: Twilio::REST::Studio::V1::FlowContext::ExecutionContext::ExecutionContextPage

Inherits:
Page
  • Object
show all
Defined in:
lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb

Constant Summary

Constants inherited from Page

Page::META_KEYS

Instance Method Summary collapse

Methods inherited from Page

#each, #load_page, #next_page, #next_page_url, #previous_page, #previous_page_url, #process_response

Constructor Details

#initialize(version, response, solution) ⇒ ExecutionContextPage

Initialize the ExecutionContextPage

Parameters:

  • version (Version)

    Version that contains the resource

  • response (Response)

    Response from the API

  • solution (Hash)

    Path solution for the resource


43
44
45
46
47
48
# File 'lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb', line 43

def initialize(version, response, solution)
  super(version, response)

  # Path Solution
  @solution = solution
end

Instance Method Details

#get_instance(payload) ⇒ ExecutionContextInstance

Build an instance of ExecutionContextInstance

Parameters:

  • payload (Hash)

    Payload response from the API

Returns:


54
55
56
57
58
59
60
61
# File 'lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb', line 54

def get_instance(payload)
  ExecutionContextInstance.new(
      @version,
      payload,
      flow_sid: @solution[:flow_sid],
      execution_sid: @solution[:execution_sid],
  )
end

#to_sObject

Provide a user friendly representation


65
66
67
# File 'lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb', line 65

def to_s
  '<Twilio.Studio.V1.ExecutionContextPage>'
end