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



204
205
206
207
208
209
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 204

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:



215
216
217
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 215

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



221
222
223
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 221

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