Sha256: c8ce316ff8f20408be8048348cc56c3f6870af2db0888da2fcb5ad278169402a
Contents?: true
Size: 749 Bytes
Versions: 11
Compression:
Stored size: 749 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 352 # - Name: Description # - Type: AN # - Min/Max: 1/80 # - Description: A free-form description to clarify the related data elements and their content class E352 < Eddy::Models::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "352" @name = "Description" @description = "A free-form description to clarify the related data elements and their content" super( min: 1, max: 80, req: req, ref: ref, val: val, ) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems