type property
The type of the parameter.
Required. Possible string values are:
- "PARAMETER_TYPE_UNSPECIFIED" : You must specify a valid type. Using this unspecified type will result in an error.
- "DOUBLE" : Type for real-valued parameters.
- "INTEGER" : Type for integral parameters.
- "CATEGORICAL" : The parameter is categorical, with a value chosen from the categories field.
- "DISCRETE" : The parameter is real valued, with a fixed set of feasible
points. If
type==DISCRETE
, feasible_points must be provided, and {min_value
,max_value
} will be ignored.
Implementation
core.String? type;