class Twilio::REST::Video::V1::RecordingPage

Public Class Methods

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

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

Calls superclass method Twilio::REST::Page::new
    # File lib/twilio-ruby/rest/video/v1/recording.rb
182 def initialize(version, response, solution)
183   super(version, response)
184 
185   # Path Solution
186   @solution = solution
187 end

Public Instance Methods

get_instance(payload) click to toggle source

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

    # File lib/twilio-ruby/rest/video/v1/recording.rb
193 def get_instance(payload)
194   RecordingInstance.new(@version, payload, )
195 end
to_s() click to toggle source

Provide a user friendly representation

    # File lib/twilio-ruby/rest/video/v1/recording.rb
199 def to_s
200   '<Twilio.Video.V1.RecordingPage>'
201 end