Sha256: a7eae590f3bdda6b1d332b42ed676595a4ba543a627bec0f5cf8b463fe78f60f
Contents?: true
Size: 1.05 KB
Versions: 11
Compression:
Stored size: 1.05 KB
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 736 # - Name: Hierarchical Child Code # - Type: ID # - Min/Max: 1/1 # - Description: Code indicating if there are hierarchical child data segments subordinate to the level being described class E736 < Eddy::Models::Element::ID # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "736" @name = "Hierarchical Child Code" @description = "Code indicating if there are hierarchical child data segments subordinate to the level being described" super( min: 1, max: 1, req: req, ref: ref, val: val, ) end # @return [Array<String>] def code_list() return [ "0", # No Subordinate HL Segment in This Hierarchical Structure. "1", # Additional Subordinate HL Data Segment in This Hierarchical Structure. ] end end end end
Version data entries
11 entries across 11 versions & 1 rubygems