Sha256: 1ab2c090bd4a78a90640ef9a7ecc986ba617820001a3c3d7f797960790a46200

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: I15
    # - Name: Component Element Separator
    # - Type: N/A (Type is not applicable (*but it's functionally AN*))
    # - Min/Max: 1/1
    # - Description:
    #   - The component element separator is a delimiter and not a data element.
    #   - This field provides the delimiter used to separate component data elements within a composite data structure.
    #   - This value must be different than the data element separator and the segment terminator.
    #
    # ### Notes:
    #
    # - Default value: `">"`
    class I15 < Eddy::Element::AN
      # @param val [String] (">")
      # @param req [String] (nil)
      # @param ref [String] (nil)
      # @return [void]
      def initialize(val: ">", req: nil, ref: nil)
        @id = "I15"
        @name = "Component Element Separator"
        @description = "The delimiter used to separate component data elements within a composite data structure."
        super(
          min: 1,
          max: 1,
          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/I15.component_element_separator.rb
eddy-0.5.0 lib/definitions/elements/manual/i/I15.component_element_separator.rb
eddy-0.4.0 lib/definitions/elements/manual/i/I15.component_element_separator.rb
eddy-0.3.0 lib/definitions/elements/manual/i/I15.component_element_separator.rb