Sha256: 111d8f75551b27eebe6003f982c44c569517cc22375910e9566fc45a09c058a1
Contents?: true
Size: 730 Bytes
Versions: 4
Compression:
Stored size: 730 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 87 # - Name: Marks and Numbers # - Type: AN # - Min/Max: 1/48 # - Description: Marks and numbers used to identify a shipment or parts of a shipment class E87 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "87" @name = "Marks and Numbers" @description = "Marks and numbers used to identify a shipment or parts of a shipment" super( min: 1, max: 48, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems