TaskAttribute

Descreve um atributo de tarefa como um par de chave-valor. O comprimento da string "chave:valor" não pode exceder 256 caracteres.

Representação JSON
{
  "key": string,

  // Union field task_attribute_value can be only one of the following:
  "stringValue": string,
  "boolValue": boolean,
  "numberValue": number
  // End of list of possible types for union field task_attribute_value.
}
Campos
key

string

A chave do atributo. As chaves não podem conter o caractere dois-pontos (:).

Campo de união task_attribute_value. O valor do atributo pode ser do tipo string, booleano ou duplo. Se nenhum deles for definido, o string_value do TaskAttribute será armazenado como a string vazia "". task_attribute_value só pode ser um dos seguintes:
stringValue

string

Valor do atributo tipado de string.

boolValue

boolean

Valor do atributo tipado booleano.

numberValue

number

Valor do atributo com digitação dupla.