CustomMetadata

User provided metadata stored as key-value pairs.

JSON representation
{
  "key": string,

  // Union field value can be only one of the following:
  "stringValue": string,
  "stringListValue": {
    object (StringList)
  },
  "numericValue": number
  // End of list of possible types for union field value.
}
Fields
key

string

Required. The key of the metadata to store.

Union field value.

value can be only one of the following:

stringValue

string

The string value of the metadata to store.

stringListValue

object (StringList)

The StringList value of the metadata to store.

numericValue

number

The numeric value of the metadata to store.

StringList

User provided string values assigned to a single metadata key.

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

string

The string values of the metadata to store.