class Twilio::REST::Preview::BulkExports::ExportPage
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
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/preview/bulk_exports/export.rb 62 def initialize(version, response, solution) 63 super(version, response) 64 65 # Path Solution 66 @solution = solution 67 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/preview/bulk_exports/export.rb 73 def get_instance(payload) 74 ExportInstance.new(@version, payload, ) 75 end
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/preview/bulk_exports/export.rb 79 def to_s 80 '<Twilio.Preview.BulkExports.ExportPage>' 81 end