Sha256: d3184b482f615a924b498f8bf74c53c6c25eb573baae10fd3d58266bdeb42efb
Contents?: true
Size: 741 Bytes
Versions: 4
Compression:
Stored size: 741 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::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
4 entries across 4 versions & 1 rubygems