TaskAttribute

タスク属性を Key-Value ペアとして記述します。「key:value」文字列の長さは 256 文字以内にする必要があります。

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.
}
フィールド
key

string

属性のキー。キーにコロン(:)を含めることはできません。

共用体フィールド task_attribute_value。属性の値は、文字列、ブール値、または double 型にできます。何も設定されていない場合、TaskAttribute string_value は空の文字列 "" として保存されます。task_attribute_value には次のいずれかのみを指定できます。
stringValue

string

文字列型の属性値。

boolValue

boolean

ブール型の属性値。

numberValue

number

二重型の属性値。