Class: Twilio::REST::Api::V2010::AccountContext::BalanceList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Api::V2010::AccountContext::BalanceList
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/balance.rb
Instance Method Summary collapse
-
#fetch ⇒ BalanceInstance
Fetch the BalanceInstance.
-
#initialize(version, account_sid: nil) ⇒ BalanceList
constructor
Initialize the BalanceList.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, account_sid: nil) ⇒ BalanceList
Initialize the BalanceList
28 29 30 31 32 33 34 |
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 28 def initialize(version, account_sid: nil) super(version) # Path Solution @solution = { account_sid: account_sid } @uri = "/Accounts/#{@solution[:account_sid]}/Balance.json" end |
Instance Method Details
#fetch ⇒ BalanceInstance
Fetch the BalanceInstance
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 38 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) BalanceInstance.new( @version, payload, account_sid: @solution[:account_sid], ) end |
#to_s ⇒ Object
Provide a user friendly representation
58 59 60 |
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 58 def to_s '#<Twilio.Api.V2010.BalanceList>' end |