Sha256: 4894cf1a2b5eb54f3ae3d44e2175bd87721bd43715fb9f7b91b761457fc94fbb
Contents?: true
Size: 729 Bytes
Versions: 4
Compression:
Stored size: 729 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 206 # - Name: Equipment Initial # - Type: AN # - Min/Max: 1/4 # - Description: Prefix or alphabetic part of an equipment unit's identifying number class E206 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "206" @name = "Equipment Initial" @description = "Prefix or alphabetic part of an equipment unit's identifying number" super( min: 1, max: 4, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems