VehicleAttributeLog

将车辆属性描述为键值对。

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。该属性的值可以是字符串、bool 或双精度类型。vehicle_attribute_value 只能是下列其中一项:
stringValue

string

字符串类型的属性值。

boolValue

boolean

布尔值类型的属性值。

numberValue

number

双精度型属性值。