Sha256: 8edac69db9f5327132286dcf5aff884b46515f7f44176f188bdfbcbf34b83d7d

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 KB

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: 347
    # - Name: Hash Total
    # - Type: R
    # - Min/Max: 1/10
    # - Description: Sum of values of the specified data element. All values in the data element will be summed without regard to decimal points (explicit or implicit) or signs. Truncation will occur on the left most digits if the sum is greater than the maximum size of the hash total of the data element.
    class E347 < Eddy::Models::Element::R
      # @param val [Float]
      # @param req [String]
      # @param ref [String]
      # @return [void]
      def initialize(val: nil, req: nil, ref: nil)
        @id = "347"
        @name = "Hash Total"
        @description = "Sum of values of the specified data element. All values in the data element will be summed without regard to decimal points (explicit or implicit) or signs. Truncation will occur on the left most digits if the sum is greater than the maximum size of the hash total of the data element."
        super(
          min: 1,
          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/generated/347.hash_total.rb
eddy-0.9.2 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.9.1 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.9.0 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.8.4 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.8.3 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.8.2 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.8.1 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.8.0 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.7.0 lib/definitions/elements/generated/347.hash_total.rb
eddy-0.6.0 lib/definitions/elements/generated/347.hash_total.rb