class SaltParser::Ofx::Balance

Attributes

amount[RW]
amount_in_pennies[RW]
posted_at[RW]

Public Instance Methods

to_hash() click to toggle source
# File lib/ofx/balance.rb, line 6
def to_hash
  {
    :amount            => amount,
    :amount_in_pennies => amount_in_pennies,
    :posted_at         => posted_at
  }
end