Sha256: bd9af402dffef3556e95515484c1a9249952389458d66d2490a0ca19040f4c1a

Contents?: true

Size: 454 Bytes

Versions: 3

Compression:

Stored size: 454 Bytes

Contents

module FinTS
  module Segment
    # HKIDN (Identifikation)
    # Section C.3.1.2
    class HKIDN < BaseSegment
      def initialize(segment_number, blz, username, system_id=0, customerid=1)
        data = ["#{country_code}:#{blz}", Helper.fints_escape(username), system_id, customerid]
        super(segment_number, data)
      end

      protected

      def type
        'HKIDN'
      end
      
      def version
        2
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_fints-0.0.4 lib/fints/segment/hkidn.rb
ruby_fints-0.0.3 lib/fints/segment/hkidn.rb
ruby_fints-0.0.2 lib/fints/segment/hkidn.rb