Sha256: b06fb9c072697fce66a3761a934bca08fdc535dc7a9f174f182201816f854688

Contents?: true

Size: 964 Bytes

Versions: 4

Compression:

Stored size: 964 Bytes

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: I06
    # - Name: Interchange Sender ID
    # - Type: AN
    # - Min/Max: 15/15
    # - Description: Identification code published by the sender for other parties to use as the receiver ID to route data to them; the sender always codes this value in the sender ID element
    class I06 < 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 = "I06"
        @name = "Interchange Sender ID"
        @description = "Identification code published by the sender for other parties to use as the receiver ID to route data to them; the sender always codes this value in the sender ID element"
        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/I06.interchange_sender_id.rb
eddy-0.5.0 lib/definitions/elements/manual/i/I06.interchange_sender_id.rb
eddy-0.4.0 lib/definitions/elements/manual/i/I06.interchange_sender_id.rb
eddy-0.3.0 lib/definitions/elements/manual/i/I06.interchange_sender_id.rb