Class: Twilio::REST::Assistants::V1::AssistantPage

Inherits:
Page
  • Object
show all
Defined in:
lib/twilio-ruby/rest/assistants/v1/assistant.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) ⇒ AssistantPage

Initialize the AssistantPage

Parameters:

  • version (Version)

    Version that contains the resource

  • response (Response)

    Response from the API

  • solution (Hash)

    Path solution for the resource



645
646
647
648
649
650
651
# File 'lib/twilio-ruby/rest/assistants/v1/assistant.rb', line 645

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

    # Path Solution
    @solution = solution
end

Instance Method Details

#get_instance(payload) ⇒ AssistantInstance

Build an instance of AssistantInstance

Parameters:

  • payload (Hash)

    Payload response from the API

Returns:



657
658
659
# File 'lib/twilio-ruby/rest/assistants/v1/assistant.rb', line 657

def get_instance(payload)
    AssistantInstance.new(@version, payload)
end

#to_sObject

Provide a user friendly representation



663
664
665
# File 'lib/twilio-ruby/rest/assistants/v1/assistant.rb', line 663

def to_s
    '<Twilio.Assistants.V1.AssistantPage>'
end