Sha256: 51a3346ca97cc68a823ea50c077831f913ca1af2b7fd8d25f543d6517cfd8fb8
Contents?: true
Size: 682 Bytes
Versions: 11
Compression:
Stored size: 682 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::Models::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
11 entries across 11 versions & 1 rubygems