Sha256: a238171f8c326951c69967c8643c93f6014413ad1d9a9e23b43dcb2d7e26b620

Contents?: true

Size: 1.1 KB

Versions: 11

Compression:

Stored size: 1.1 KB

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: I04
    # - Name: Security Information
    # - Type: AN
    # - Min/Max: 10/10
    # - Description: This is used for identifying the security information about the interchange sender or the data in the interchange; the type of information is set by the Security Information Qualifier (`I03`)
    #
    # ### Notes:
    #
    # - By default, this element's value is just 10 empty spaces.
    class I04 < Eddy::Models::Element::AN
      # @param val [String] ("          ")
      # @param req [String] (nil)
      # @param ref [String] (nil)
      # @return [void]
      def initialize(val: (" " * 10), req: nil, ref: nil)
        @id = "I04"
        @name = "Security Information"
        @description = "This is used for identifying the security information about the interchange sender or the data in the interchange; the type of information is set by the Security Information Qualifier (`I03`)"
        super(
          min: 10,
          max: 10,
          req: req,
          ref: ref,
          val: val,
        )
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
eddy-0.10.0 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.9.2 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.9.1 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.9.0 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.8.4 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.8.3 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.8.2 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.8.1 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.8.0 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.7.0 lib/definitions/elements/manual/i/I04.security_information.rb
eddy-0.6.0 lib/definitions/elements/manual/i/I04.security_information.rb