class Eddy::Elements::E347
### 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.
Public Class Methods
new(val: nil, req: nil, ref: nil)
click to toggle source
@param val [Float] @param req [String] @param ref [String] @return [void]
Calls superclass method
Eddy::Models::Element::R::new
# File lib/definitions/elements/generated/347.hash_total.rb, line 15 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