class Twilio::REST::FlexApi::V1::FlexFlowPage
Public Class Methods
new(version, response, solution)
click to toggle source
Initialize the FlexFlowPage
@param [Version] version Version
that contains the resource @param [Response] response Response
from the API @param [Hash] solution Path solution for the resource @return [FlexFlowPage] FlexFlowPage
Calls superclass method
Twilio::REST::Page::new
# File lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb 199 def initialize(version, response, solution) 200 super(version, response) 201 202 # Path Solution 203 @solution = solution 204 end
Public Instance Methods
get_instance(payload)
click to toggle source
Build an instance of FlexFlowInstance
@param [Hash] payload Payload response from the API @return [FlexFlowInstance] FlexFlowInstance
# File lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb 210 def get_instance(payload) 211 FlexFlowInstance.new(@version, payload, ) 212 end
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb 216 def to_s 217 '<Twilio.FlexApi.V1.FlexFlowPage>' 218 end