class Twilio::REST::Preview::Wireless::SimContext::UsageList

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.

Public Class Methods

new(version, sim_sid: nil) click to toggle source

Initialize the UsageList @param [Version] version Version that contains the resource @param [String] sim_sid The sim_sid @return [UsageList] UsageList

Calls superclass method Twilio::REST::ListResource::new
   # File lib/twilio-ruby/rest/preview/wireless/sim/usage.rb
22 def initialize(version, sim_sid: nil)
23   super(version)
24 
25   # Path Solution
26   @solution = {sim_sid: sim_sid}
27 end

Public Instance Methods

to_s() click to toggle source

Provide a user friendly representation

   # File lib/twilio-ruby/rest/preview/wireless/sim/usage.rb
31 def to_s
32   '#<Twilio.Preview.Wireless.UsageList>'
33 end