Sha256: 44fb0aed22e3cd746348c92505e0e076aecc20ec4bc5596ed196eaa19e8de42a
Contents?: true
Size: 665 Bytes
Versions: 4
Compression:
Stored size: 665 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 369 # - Name: Free-form Description # - Type: AN # - Min/Max: 1/45 # - Description: Free-form descriptive text class E369 < Eddy::Models::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "369" @name = "Free-form Description" @description = "Free-form descriptive text" super( min: 1, max: 45, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems