renderType property

String? renderType
getter/setter pair

How the result value of the custom column should be interpreted.

Output only. Possible string values are:

  • "UNSPECIFIED" : Not specified.
  • "UNKNOWN" : Unknown.
  • "NUMBER" : The custom column is a raw numerical value. See value_type field to determine if it is an integer or a double.
  • "PERCENT" : The custom column should be multiplied by 100 to retrieve the percentage value.
  • "MONEY" : The custom column value is a monetary value and is in micros.
  • "STRING" : The custom column value is a string.
  • "BOOLEAN" : The custom column value is a boolean.
  • "DATE" : The custom column value is a date represented as an integer in YYYYMMDD format.

Implementation

core.String? renderType;