valueType property

String? valueType
getter/setter pair

Type of the parameter: string, int, bool etc.

consider custom type for the benefit for the validation. Possible string values are:

  • "VALUE_TYPE_UNSPECIFIED" : Value type is not specified.
  • "STRING" : Value type is string.
  • "INT" : Value type is integer.
  • "BOOL" : Value type is boolean.
  • "SECRET" : Value type is secret.
  • "ENUM" : Value type is enum.
  • "AUTHORIZATION_CODE" : Value type is authorization code.
  • "ENCRYPTION_KEY" : Encryption Key.

Implementation

core.String? valueType;