Sha256: 7b3f8e6f6e342e1007320b56d0dd9faeedf050a8c826fcc91278e36c2922ec0d

Contents?: true

Size: 1.61 KB

Versions: 5

Compression:

Stored size: 1.61 KB

Contents

# Copyright © 2007 Chris Guidry <chrisguidry@gmail.com>
#
# This file is part of OFX for Ruby.
# 
# OFX for Ruby is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# 
# OFX for Ruby is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

module OFX
    class Balance
        attr_accessor :amount
        attr_accessor :as_of
    end
    
    class Transaction
        attr_accessor :transaction_type
        
        attr_accessor :date_posted
        attr_accessor :date_initiated
        attr_accessor :date_available
        
        attr_accessor :amount
        attr_accessor :currency
        
        attr_accessor :financial_institution_transaction_identifier
        attr_accessor :corrected_financial_institution_transaction_identifier
        attr_accessor :correction_action
        attr_accessor :server_transaction_identifier
        attr_accessor :check_number
        attr_accessor :reference_number
        
        attr_accessor :standard_industrial_code
        
        attr_accessor :payee_identifier
        attr_accessor :payee
        attr_accessor :transfer_destination_account
        
        attr_accessor :memo
    end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ofx_for_ruby-0.1.5 lib/ofx/statements.rb
ofx_for_ruby-0.1.4 lib/ofx/statements.rb
ofx_for_ruby-0.1.3 lib/ofx/statements.rb
ofx_for_ruby-0.1.2 lib/ofx/statements.rb
ofx_for_ruby-0.1.1 lib/ofx/statements.rb