ValueType

The type of the parameter.

JSON representation
{

  // Union field value can be only one of the following:
  "stringValue": string,
  "intValue": string,
  "doubleValue": number,
  "booleanValue": boolean,
  "stringArray": {
    object (StringParameterArray)
  },
  "intArray": {
    object (IntParameterArray)
  },
  "doubleArray": {
    object (DoubleParameterArray)
  },
  "booleanArray": {
    object (BooleanParameterArray)
  },
  "jsonValue": string
  // End of list of possible types for union field value.
}
Fields

Union field value.

value can be only one of the following:

stringValue

string

String.

intValue

string (int64 format)

Integer.

doubleValue

number

Double Number.

booleanValue

boolean

Boolean.

stringArray

object (StringParameterArray)

String Array.

intArray

object (IntParameterArray)

Integer Array.

doubleArray

object (DoubleParameterArray)

Double Number Array.

booleanArray

object (BooleanParameterArray)

Boolean Array.

jsonValue

string

Json.

StringParameterArray

This message only contains a field of string array.

JSON representation
{
  "stringValues": [
    string
  ]
}
Fields
stringValues[]

string

String array.

IntParameterArray

This message only contains a field of integer array.

JSON representation
{
  "intValues": [
    string
  ]
}
Fields
intValues[]

string (int64 format)

Integer array.

DoubleParameterArray

This message only contains a field of double number array.

JSON representation
{
  "doubleValues": [
    number
  ]
}
Fields
doubleValues[]

number

Double number array.

BooleanParameterArray

This message only contains a field of boolean array.

JSON representation
{
  "booleanValues": [
    boolean
  ]
}
Fields
booleanValues[]

boolean

Boolean array.