class Google::Apis::MlV1::GoogleCloudMlV1StudyConfigParameterSpecIntegerValueSpec
Attributes
max_value[RW]
Must be specified if type is `INTEGER`. Maximum value of the parameter. Corresponds to the JSON property `maxValue` @return [Fixnum]
min_value[RW]
Must be specified if type is `INTEGER`. Minimum value of the parameter. Corresponds to the JSON property `minValue` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 251 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ml_v1/classes.rb, line 256 def update!(**args) @max_value = args[:max_value] if args.key?(:max_value) @min_value = args[:min_value] if args.key?(:min_value) end