Class: DebtBalance

Inherits:
Object
  • Object
show all
Defined in:
lib/default.rb

Overview

/DebtBalance

availableBalance - Amount
pendingOutBalance - Amount

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(availableBalance = nil, pendingOutBalance = nil) ⇒ DebtBalance

Returns a new instance of DebtBalance.



162
163
164
165
# File 'lib/default.rb', line 162

def initialize(availableBalance = nil, pendingOutBalance = nil)
  @availableBalance = availableBalance
  @pendingOutBalance = pendingOutBalance
end

Instance Attribute Details

#availableBalanceObject

Returns the value of attribute availableBalance.



159
160
161
# File 'lib/default.rb', line 159

def availableBalance
  @availableBalance
end

#pendingOutBalanceObject

Returns the value of attribute pendingOutBalance.



160
161
162
# File 'lib/default.rb', line 160

def pendingOutBalance
  @pendingOutBalance
end