Class: AqumulateAPI::AccountBalance

Inherits:
Entity
  • Object
show all
Defined in:
lib/aqumulate_api/entities/account_balance.rb

Constant Summary collapse

ATTR_MAP =
{
    type: 'AcctBalType',
    amount: 'AcctBalAmt',
    currency: 'CurCode'
}

Constants inherited from Entity

Entity::SOURCE_ASSOCIATIONS

Instance Attribute Summary collapse

Method Summary

Methods inherited from Entity

from_source, #initialize

Constructor Details

This class inherits a constructor from AqumulateAPI::Entity

Instance Attribute Details

#amountObject

Returns the value of attribute amount.



10
11
12
# File 'lib/aqumulate_api/entities/account_balance.rb', line 10

def amount
  @amount
end

#currencyObject

Returns the value of attribute currency.



10
11
12
# File 'lib/aqumulate_api/entities/account_balance.rb', line 10

def currency
  @currency
end

#typeObject

Returns the value of attribute type.



10
11
12
# File 'lib/aqumulate_api/entities/account_balance.rb', line 10

def type
  @type
end