Sha256: 3649e263aac0437619c95bda6aa9fcccf651801ab12261f25190b8e89a8d2d3a
Contents?: true
Size: 793 Bytes
Versions: 11
Compression:
Stored size: 793 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 396 # - Name: Shipment Identification # - Type: AN # - Min/Max: 2/30 # - Description: A unique control number assigned by the original shipper to identify a specific shipment class E396 < Eddy::Models::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "396" @name = "Shipment Identification" @description = "A unique control number assigned by the original shipper to identify a specific shipment" super( min: 2, max: 30, req: req, ref: ref, val: val, ) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems