Sha256: 5f1542f86d6cee926c00bebeaf0bd4007f265457a90bffa4bafc425caf9a002c

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: I07
    # - Name: Interchange Receiver ID
    # - Type: AN
    # - Min/Max: 15/15
    # - Description: Identification code published by the receiver of the data; When sending, it is used by the sender as their sending ID, thus other parties sending to them will use this as a receiving ID to route data to them
    class I07 < Eddy::Element::AN
      # @param val [String] (nil)
      # @param req [String] (nil)
      # @param ref [String] (nil)
      # @return [void]
      def initialize(val: nil, req: nil, ref: nil)
        @id = "I07"
        @name = "Interchange Receiver ID"
        @description = "Identification code published by the receiver of the data; When sending, it is used by the sender as their sending ID, thus other parties sending to them will use this as a receiving ID to route data to them"
        super(
          min: 15,
          max: 15,
          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/manual/i/I07.interchange_receiver_id.rb
eddy-0.5.0 lib/definitions/elements/manual/i/I07.interchange_receiver_id.rb
eddy-0.4.0 lib/definitions/elements/manual/i/I07.interchange_receiver_id.rb
eddy-0.3.0 lib/definitions/elements/manual/i/I07.interchange_receiver_id.rb