dataType property

String? dataType
getter/setter pair

The type of the values for this column. Possible string values are:

  • "DATA_TYPE_UNSPECIFIED" : Not used.
  • "STRING" : ReportValues for this column will use string_value.
  • "INT" : ReportValues for this column will use int_value.
  • "DECIMAL" : ReportValues for this column will use decimal_value.
  • "MONEY" : ReportValues for this column will use money_value.
  • "DATE" : ReportValues for this column will use date_value.
  • "DATE_TIME" : ReportValues for this column will use date_time_value.

Implementation

core.String? dataType;