Sha256: 1e18bc4a3ce5afb777f5f3cc723d93f493c024003eb057e65d14b581ded0c94b
Contents?: true
Size: 674 Bytes
Versions: 4
Compression:
Stored size: 674 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 67 # - Name: Identification Code # - Type: AN # - Min/Max: 2/80 # - Description: Code identifying a party or other code class E67 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "67" @name = "Identification Code" @description = "Code identifying a party or other code" super( min: 2, max: 80, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems