Sha256: 7ce5c6e6557faa9c023b6238e7c87359d0d35cbc6d0e57d3829b71e94ada8a36
Contents?: true
Size: 891 Bytes
Versions: 4
Compression:
Stored size: 891 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::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
4 entries across 4 versions & 1 rubygems