Sha256: b5636fbdb3f2d5360f95c23dcf9f6778a3565f32b22dc59c37379a497d220d4e

Contents?: true

Size: 857 Bytes

Versions: 4

Compression:

Stored size: 857 Bytes

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: 127
    # - Name: Reference Identification
    # - Type: AN
    # - Min/Max: 1/30
    # - Description: Reference information as defined for a particular Transaction Set or as specified by the Reference Identification Qualifier
    class E127 < Eddy::Element::AN
      # @param val [String]
      # @param req [String]
      # @param ref [String]
      # @return [void]
      def initialize(val: nil, req: nil, ref: nil)
        @id = "127"
        @name = "Reference Identification"
        @description = "Reference information as defined for a particular Transaction Set or as specified by the Reference Identification Qualifier"
        super(
          min: 1,
          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/127.reference_identification.rb
eddy-0.5.0 lib/definitions/elements/generated/127.reference_identification.rb
eddy-0.4.0 lib/definitions/elements/generated/127.reference_identification.rb
eddy-0.3.0 lib/definitions/elements/generated/127.reference_identification.rb