ParameterType

  • The JSON representation describes information about a specific query parameter, including its type, description, and default value.

  • Query parameters have a field type, an optional description, and an optional default value that's used if no value is provided.

Information about a specific query parameter.

JSON representation
{
  "type": {
    object (FieldType)
  },
  "description": string,
  "defaultValue": {
    object (ParameterValue)
  }
}
Fields
type

object (FieldType)

Parameter field type.

description

string

Optional. Parameter description.

defaultValue

object (ParameterValue)

Optional. Value that should be used if no parameter value is provided.