class Twilio::REST::Studio::V2::FlowValidatePage

Public Class Methods

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

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

Calls superclass method Twilio::REST::Page::new
   # File lib/twilio-ruby/rest/studio/v2/flow_validate.rb
61 def initialize(version, response, solution)
62   super(version, response)
63 
64   # Path Solution
65   @solution = solution
66 end

Public Instance Methods

get_instance(payload) click to toggle source

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

   # File lib/twilio-ruby/rest/studio/v2/flow_validate.rb
72 def get_instance(payload)
73   FlowValidateInstance.new(@version, payload, )
74 end
to_s() click to toggle source

Provide a user friendly representation

   # File lib/twilio-ruby/rest/studio/v2/flow_validate.rb
78 def to_s
79   '<Twilio.Studio.V2.FlowValidatePage>'
80 end