Class: Twilio::REST::Marketplace::V1::InstalledAddOnContext::InstalledAddOnExtensionPage

Inherits:
Page
  • Object
show all
Defined in:
lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.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) ⇒ InstalledAddOnExtensionPage

Initialize the InstalledAddOnExtensionPage

Parameters:

  • Version that contains the resource

  • Response from the API

  • Path solution for the resource



348
349
350
351
352
353
354
# File 'lib/twilio-ruby/rest/marketplace/v1/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 response from the API

Returns:

  • InstalledAddOnExtensionInstance



360
361
362
# File 'lib/twilio-ruby/rest/marketplace/v1/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/marketplace/v1/installed_add_on/installed_add_on_extension.rb', line 366

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