VehicleAttributeLog

車両属性を Key-Value ペアとして記述します。

JSON 表現
{
  "key": string,
  "value": string,

  // Union field vehicle_attribute_value can be only one of the following:
  "stringValue": string,
  "boolValue": boolean,
  "numberValue": number
  // End of list of possible types for union field vehicle_attribute_value.
}
フィールド
key

string

属性のキー(例: allowed_use_carpool_lane)。

value

string

属性の値(例: true)。

共用体フィールド vehicle_attribute_value。属性の値には、文字列型、ブール値、倍精度型のいずれかを使用できます。vehicle_attribute_value は次のいずれかになります。
stringValue

string

文字列型の属性値。

boolValue

boolean

ブール値の型属性値。

numberValue

number

ダブル属性値。