Sha256: 12d82f78cec5bfa82cf63aa4f67e3ba53012b35b101372c671bb2cc1c1178a32
Contents?: true
Size: 873 Bytes
Versions: 11
Compression:
Stored size: 873 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::Models::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
11 entries across 11 versions & 1 rubygems