Sha256: 7351bd06d4a3e59e88272c48cb39f2d27a250a531540e874c2896bedd477adb4
Contents?: true
Size: 865 Bytes
Versions: 4
Compression:
Stored size: 865 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 734 # - Name: Hierarchical Parent ID Number # - Type: AN # - Min/Max: 1/12 # - Description: Identification number of the next higher hierarchical data segment that the data segment being described is subordinate to class E734 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "734" @name = "Hierarchical Parent ID Number" @description = "Identification number of the next higher hierarchical data segment that the data segment being described is subordinate to" super( min: 1, max: 12, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems