class Twilio::REST::Bulkexports::V1::ExportPage

Public Class Methods

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

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

Calls superclass method Twilio::REST::Page::new
   # File lib/twilio-ruby/rest/bulkexports/v1/export.rb
58 def initialize(version, response, solution)
59   super(version, response)
60 
61   # Path Solution
62   @solution = solution
63 end

Public Instance Methods

get_instance(payload) click to toggle source

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

   # File lib/twilio-ruby/rest/bulkexports/v1/export.rb
69 def get_instance(payload)
70   ExportInstance.new(@version, payload, )
71 end
to_s() click to toggle source

Provide a user friendly representation

   # File lib/twilio-ruby/rest/bulkexports/v1/export.rb
75 def to_s
76   '<Twilio.Bulkexports.V1.ExportPage>'
77 end