Sha256: ff0e4c99bd1fc85077ac7e9f978aad0dd78c322ee959877e5a24276341818962
Contents?: true
Size: 803 Bytes
Versions: 11
Compression:
Stored size: 803 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::Models::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
11 entries across 11 versions & 1 rubygems