Class: RVGP::Pta::RegisterTransaction
- Inherits:
-
Base::Reader
- Object
- Base::Reader
- RVGP::Pta::RegisterTransaction
- Defined in:
- lib/rvgp/pta.rb
Overview
This class stores the Transaction details, as produced by the register method of a pta adapter
Instance Attribute Summary collapse
-
#date ⇒ Date
readonly
The date this transaction occurred.
-
#payee ⇒ String
readonly
The payee (aka description) line of this transaction.
-
#postings ⇒ Array<RVGP::Pta::RegisterTransaction>
readonly
The postings in this transaction.
Attributes inherited from Base::Reader
Method Summary
Methods inherited from Base::Reader
Instance Attribute Details
#date ⇒ Date (readonly)
The date this transaction occurred
48 49 50 |
# File 'lib/rvgp/pta.rb', line 48 def date @date end |
#payee ⇒ String (readonly)
The payee (aka description) line of this transaction
48 49 50 |
# File 'lib/rvgp/pta.rb', line 48 def payee @payee end |
#postings ⇒ Array<RVGP::Pta::RegisterTransaction> (readonly)
The postings in this transaction
48 49 50 |
# File 'lib/rvgp/pta.rb', line 48 def postings @postings end |