Class: FinTS::Segment::HKSAL
- Inherits:
-
BaseSegment
- Object
- BaseSegment
- FinTS::Segment::HKSAL
- Defined in:
- lib/fints/segment/hksal.rb
Overview
HKSAL (Kontosaldo) Refs: www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Messages_Geschaeftsvorfaelle_2015-08-07_final_version.pdf Section C.2.1.2
Instance Attribute Summary
Attributes inherited from BaseSegment
Instance Method Summary collapse
-
#initialize(segno, version, account) ⇒ HKSAL
constructor
A new instance of HKSAL.
Methods inherited from BaseSegment
Constructor Details
#initialize(segno, version, account) ⇒ HKSAL
Returns a new instance of HKSAL.
7 8 9 10 11 12 13 14 |
# File 'lib/fints/segment/hksal.rb', line 7 def initialize(segno, version, account) @version = version data = [ account, 'N' ] super(segno, data) end |