Sha256: 7c59d9fda748b47bae8d14b1eec6e55ddd4d18bec830c8b0bb5875f52ee7622c

Contents?: true

Size: 785 Bytes

Versions: 4

Compression:

Stored size: 785 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::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

4 entries across 4 versions & 1 rubygems

Version Path
eddy-0.5.1 lib/definitions/elements/generated/396.shipment_identification.rb
eddy-0.5.0 lib/definitions/elements/generated/396.shipment_identification.rb
eddy-0.4.0 lib/definitions/elements/generated/396.shipment_identification.rb
eddy-0.3.0 lib/definitions/elements/generated/396.shipment_identification.rb