Sha256: 919cdb6420e015ac52986061c7fa815e58bd7b11214914042670c79de1a73ff6

Contents?: true

Size: 811 Bytes

Versions: 4

Compression:

Stored size: 811 Bytes

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: I16
    # - Name: Number of Included Functional Groups
    # - Type: N0
    # - Min/Max: 1/5
    # - Description: A count of the number of functional groups included in an interchange
    class I16 < Eddy::Element::N
      # @param val [Integer] (nil)
      # @param req [String] (nil)
      # @param ref [String] (nil)
      # @return [void]
      def initialize(val: nil, req: nil, ref: nil)
        @id = "I16"
        @name = "Number of Included Functional Groups"
        @description = "A count of the number of functional groups included in an interchange"
        super(
          min: 1,
          max: 5,
          req: req,
          ref: ref,
          val: val,
          decimals: 0,
        )
      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/I16.number_of_included_functional_groups.rb
eddy-0.5.0 lib/definitions/elements/manual/i/I16.number_of_included_functional_groups.rb
eddy-0.4.0 lib/definitions/elements/manual/i/I16.number_of_included_functional_groups.rb
eddy-0.3.0 lib/definitions/elements/manual/i/I16.number_of_included_functional_groups.rb