Class: Twilio::REST::Preview::Marketplace::InstalledAddOnContext::InstalledAddOnExtensionPage

Inherits:
Twilio::REST::Page
  • Object
show all
Defined in:
lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb

Constant Summary

Constants inherited from Twilio::REST::Page

Twilio::REST::Page::META_KEYS

Instance Method Summary collapse

Methods inherited from Twilio::REST::Page

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

Constructor Details

#initialize(version, response, solution) ⇒ InstalledAddOnExtensionPage

Initialize the InstalledAddOnExtensionPage

Parameters:

  • version (Version)

    Version that contains the resource

  • response (Response)

    Response from the API

  • solution (Hash)

    Path solution for the resource



348
349
350
351
352
353
354
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 348

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

    # Path Solution
    @solution = solution
end

Instance Method Details

#get_instance(payload) ⇒ InstalledAddOnExtensionInstance

Build an instance of InstalledAddOnExtensionInstance

Parameters:

  • payload (Hash)

    Payload response from the API

Returns:



360
361
362
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 360

def get_instance(payload)
    InstalledAddOnExtensionInstance.new(@version, payload, installed_add_on_sid: @solution[:installed_add_on_sid])
end

#to_sObject

Provide a user friendly representation



366
367
368
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 366

def to_s
    '<Twilio.Preview.Marketplace.InstalledAddOnExtensionPage>'
end