module Eddy module Elements # ### Element Summary: # # - Id: 81 # - Name: Weight # - Type: R # - Min/Max: 1/10 # - Description: Numeric value of weight class E81 < Eddy::Models::Element::R # @param val [Float] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "81" @name = "Weight" @description = "Numeric value of weight" super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end