Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::LogPage

Inherits:
Page
  • Object
show all
Defined in:
lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb

Constant Summary

Constants inherited from Page

Page::META_KEYS

Instance Method Summary collapse

Methods inherited from Page

#each, #load_page, #next_page, #next_page_url, #previous_page, #previous_page_url, #process_response

Constructor Details

#initialize(version, response, solution) ⇒ LogPage

Initialize the LogPage

Parameters:

  • Version that contains the resource

  • Response from the API

  • Path solution for the resource



316
317
318
319
320
321
322
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 316

def initialize(version, response, solution)
    super(version, response)
    

    # Path Solution
    @solution = solution
end

Instance Method Details

#get_instance(payload) ⇒ LogInstance

Build an instance of LogInstance

Parameters:

  • Payload response from the API

Returns:

  • LogInstance



328
329
330
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 328

def get_instance(payload)
    LogInstance.new(@version, payload, service_sid: @solution[:service_sid], environment_sid: @solution[:environment_sid])
end

#to_sObject

Provide a user friendly representation



334
335
336
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 334

def to_s
    '<Twilio.Serverless.V1.LogPage>'
end