Class: Twilio::REST::Preview::Wireless::SimContext::UsagePage

Inherits:
Twilio::REST::Page show all
Defined in:
lib/twilio-ruby/rest/preview/wireless/sim/usage.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) ⇒ UsagePage

Initialize the UsagePage

Parameters:

  • Version that contains the resource

  • Response from the API

  • Path solution for the resource



194
195
196
197
198
199
200
# File 'lib/twilio-ruby/rest/preview/wireless/sim/usage.rb', line 194

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

    # Path Solution
    @solution = solution
end

Instance Method Details

#get_instance(payload) ⇒ UsageInstance

Build an instance of UsageInstance

Parameters:

  • Payload response from the API

Returns:

  • UsageInstance



206
207
208
# File 'lib/twilio-ruby/rest/preview/wireless/sim/usage.rb', line 206

def get_instance(payload)
    UsageInstance.new(@version, payload, sim_sid: @solution[:sim_sid])
end

#to_sObject

Provide a user friendly representation



212
213
214
# File 'lib/twilio-ruby/rest/preview/wireless/sim/usage.rb', line 212

def to_s
    '<Twilio.Preview.Wireless.UsagePage>'
end