Sha256: 860745274bcf09553f03d5d2eee6a496fcced28618d79f28a20633d645d9396b
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 329 # - Name: Transaction Set Control Number # - Type: AN # - Min/Max: 4/9 # - Description: Identifying control number that must be unique within the transaction set functional group assigned by the originator for a transaction set # # ### Notes: # # - Values for this element need to be generated and have their uniqueness ensured. # - This element inherits from {Eddy::Element::N}, even though it is technically an `AN`. class E329 < Eddy::Element::N # @param val [String] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "329" @name = "Transaction Set Control Number" @description = "Identifying control number that must be unique within the transaction set functional group assigned by the originator for a transaction set" super( min: 4, max: 9, req: req, ref: ref, val: val, decimals: 0, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems