type property

String? type
getter/setter pair

Name of a supported variable type.

Supported types are string, int, bool.

Optional. Immutable. Possible string values are:

  • "TYPE_UNSPECIFIED" : Variable type is unspecified.
  • "STRING" : Variable type is string.
  • "INT" : Variable type is int.
  • "BOOL" : Variable type is bool.
  • "STRUCT" : Variable type is struct.
  • "LIST" : Variable type is list.

Implementation

core.String? type;