Class: FinTS::Segment::HKSPA
- Inherits:
-
BaseSegment
- Object
- BaseSegment
- FinTS::Segment::HKSPA
- Defined in:
- lib/fints/segment/hkspa.rb
Overview
HKSPA (SEPA-Kontoverbindung anfordern) Section C.10.1.3
Instance Attribute Summary
Attributes inherited from BaseSegment
Instance Method Summary collapse
-
#initialize(segno, accno, subaccfeature, blz) ⇒ HKSPA
constructor
A new instance of HKSPA.
Methods inherited from BaseSegment
Constructor Details
#initialize(segno, accno, subaccfeature, blz) ⇒ HKSPA
Returns a new instance of HKSPA.
6 7 8 9 10 11 12 13 |
# File 'lib/fints/segment/hkspa.rb', line 6 def initialize(segno, accno, subaccfeature, blz) data = if accno.nil? [''] else [[accno, subaccfeature, country_code, blz].join(':')] end super(segno, data) end |