Class: FinTS::Segment::HKKAZ
- Inherits:
-
BaseSegment
- Object
- BaseSegment
- FinTS::Segment::HKKAZ
- Defined in:
- lib/fints/segment/hkkaz.rb
Overview
HKKAZ (Kontoumsätze) Refs: www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Messages_Geschaeftsvorfaelle_2015-08-07_final_version.pdf Section C.2.1.1.1.2
Instance Attribute Summary
Attributes inherited from BaseSegment
Instance Method Summary collapse
-
#initialize(segno, version, account, date_start, date_end, touchdown) ⇒ HKKAZ
constructor
A new instance of HKKAZ.
Methods inherited from BaseSegment
Constructor Details
#initialize(segno, version, account, date_start, date_end, touchdown) ⇒ HKKAZ
Returns a new instance of HKKAZ.
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/fints/segment/hkkaz.rb', line 7 def initialize(segno, version, account, date_start, date_end, touchdown) @version = version data = [ account, 'N', date_start.strftime('%Y%m%d'), date_end.strftime('%Y%m%d'), '', touchdown ? Helper.fints_escape(touchdown) : '' ] super(segno, data) end |