class SaltParser::Ofx::Transaction

Attributes

account_id[RW]
amount[RW]
amount_in_pennies[RW]
check_number[RW]
fit_id[RW]
memo[RW]
name[RW]
payee[RW]
posted_at[RW]
ref_number[RW]
sic[RW]
type[RW]
unit_price[RW]
units[RW]

Public Instance Methods

to_hash() click to toggle source
# File lib/ofx/transaction.rb, line 8
def to_hash
  {
    :amount             => amount,
    :amount_in_pennies  => amount_in_pennies,
    :check_number       => check_number,
    :fit_id             => fit_id,
    :memo               => memo,
    :name               => name,
    :payee              => payee,
    :posted_at          => posted_at,
    :ref_number         => ref_number,
    :type               => type,
    :sic                => sic,
    :units              => units,
    :unit_price         => unit_price,
    :account_id         => account_id
  }
end