Class: FinTS::Segment::HKWPD

Inherits:
BaseSegment show all
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

#segmentno

Instance Method Summary collapse

Methods inherited from BaseSegment

#to_s

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, )
  # 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 = []
  super(segno, data)
  @version = version
end