Sha256: 856327a54474c6fe656e9afd116de4f40928d341731491aa4063c4ed558f8353
Contents?: true
Size: 899 Bytes
Versions: 11
Compression:
Stored size: 899 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 103 # - Name: Packaging Code # - Type: AN # - Min/Max: 3/5 # - Description: Code identifying the type of packaging; Part 1: Packaging Form, Part 2: Packaging Material; if the Data Element is used, then Part 1 is always required class E103 < Eddy::Models::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "103" @name = "Packaging Code" @description = "Code identifying the type of packaging; Part 1: Packaging Form, Part 2: Packaging Material; if the Data Element is used, then Part 1 is always required" super( min: 3, max: 5, req: req, ref: ref, val: val, ) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems