Class: Twilio::REST::Api::V2010::AccountContext::BalanceInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/balance.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil) ⇒ BalanceInstance

Initialize the BalanceInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that created this Balance resource.

  • sid (String)

    The SID of the Call resource to fetch.



94
95
96
97
98
99
100
101
102
103
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 94

def initialize(version, payload , account_sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'balance' => payload['balance'],
        'currency' => payload['currency'],
    }
end

Instance Method Details

#account_sidString

Returns The unique SID identifier of the Account.

Returns:

  • (String)

    The unique SID identifier of the Account.



108
109
110
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 108

def 
    @properties['account_sid']
end

#balanceString

Returns The balance of the Account, in units specified by the unit parameter. Balance changes may not be reflected immediately. Child accounts do not contain balance information.

Returns:

  • (String)

    The balance of the Account, in units specified by the unit parameter. Balance changes may not be reflected immediately. Child accounts do not contain balance information



114
115
116
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 114

def balance
    @properties['balance']
end

#currencyString

Returns The units of currency for the account balance.

Returns:

  • (String)

    The units of currency for the account balance



120
121
122
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 120

def currency
    @properties['currency']
end

#inspectObject

Provide a detailed, user friendly representation



132
133
134
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 132

def inspect
    "<Twilio.Api.V2010.BalanceInstance>"
end

#to_sObject

Provide a user friendly representation



126
127
128
# File 'lib/twilio-ruby/rest/api/v2010/account/balance.rb', line 126

def to_s
    "<Twilio.Api.V2010.BalanceInstance>"
end