Class: FinTS::Segment::HKWPD
- Inherits:
-
BaseSegment
- Object
- BaseSegment
- FinTS::Segment::HKWPD
- Defined in:
- lib/fints/segment/hkwpd.rb
Overview
HKWPD (Depotaufstellung anfordern) Section C.4.3.1 Example: HKPWD:3:7+23456::280:10020030+USD+2’
Instance Attribute Summary
Attributes inherited from BaseSegment
Instance Method Summary collapse
-
#initialize(segno, version, account) ⇒ HKWPD
constructor
A new instance of HKWPD.
Methods inherited from BaseSegment
Constructor Details
#initialize(segno, version, account) ⇒ HKWPD
Returns a new instance of HKWPD.
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/fints/segment/hkwpd.rb', line 7 def initialize(segno, version, account) # The spec allows the specification of currency and # quality of valuations, as shown in the docstring above. # However, both 1822direkt and CortalConsors reject the # call if these two are present, claiming an invalid input. # 'EUR' # Währung der Depotaufstellung" # 2 # Kursqualität data = [account] super(segno, data) @version = version end |