Sha256: 43120cc120a00ed91d35670da00139cbe04c5b910fd39fc0604a5a6136c922a0
Contents?: true
Size: 981 Bytes
Versions: 4
Compression:
Stored size: 981 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 97 # - Name: Number of Transaction Sets Included # - Type: N0 # - Min/Max: 1/6 # - Description: Total number of transaction sets included in the functional group or interchange (transmission) group terminated by the trailer containing this data element class E97 < Eddy::Element::N # @param val [Integer] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "97" @name = "Number of Transaction Sets Included" @description = "Total number of transaction sets included in the functional group or interchange (transmission) group terminated by the trailer containing this data element" super( min: 1, max: 6, req: req, ref: ref, val: val, decimals: 0, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems