valueType property

String? valueType
getter/setter pair

Only applicable for Vertex AI Feature Store (Legacy).

Type of Feature value.

Immutable. Possible string values are:

  • "VALUE_TYPE_UNSPECIFIED" : The value type is unspecified.
  • "BOOL" : Used for Feature that is a boolean.
  • "BOOL_ARRAY" : Used for Feature that is a list of boolean.
  • "DOUBLE" : Used for Feature that is double.
  • "DOUBLE_ARRAY" : Used for Feature that is a list of double.
  • "INT64" : Used for Feature that is INT64.
  • "INT64_ARRAY" : Used for Feature that is a list of INT64.
  • "STRING" : Used for Feature that is string.
  • "STRING_ARRAY" : Used for Feature that is a list of String.
  • "BYTES" : Used for Feature that is bytes.

Implementation

core.String? valueType;