Sha256: 49e9052f41bc054c267e70fd88dc50c121cd8f0c7afb8cab0e85899003bdc87d
Contents?: true
Size: 795 Bytes
Versions: 4
Compression:
Stored size: 795 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 387 # - Name: Routing # - Type: AN # - Min/Max: 1/35 # - Description: Free-form description of the routing or requested routing for shipment, or the originating carrier's identity class E387 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "387" @name = "Routing" @description = "Free-form description of the routing or requested routing for shipment, or the originating carrier's identity" super( min: 1, max: 35, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems