Sha256: 1a8e89d14b0d88e22cba0966ced2f2dbaece19910d7816a54c18ce889555138a

Contents?: true

Size: 337 Bytes

Versions: 3

Compression:

Stored size: 337 Bytes

Contents

module FinTS
  module Segment
    # HNHBS (Nachrichtenabschluss)
    # Section B.5.3
    class HNHBS < BaseSegment
      def initialize(segno, msgno)
        data = [msgno.to_s]
        super(segno, data)
      end

      protected

      def type
        'HNHBS'
      end
      
      def version
        1
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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