VehicleAttributeLog

Describes a vehicle attribute as a key-value pair.

JSON representation
{
  "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.
}
Fields
key

string

The attribute's key; for example, allowed_use_carpool_lane.

value

string

The attribute's value; for example, true.

Union field vehicle_attribute_value. The attribute's value, can be in string, bool, or double type. vehicle_attribute_value can be only one of the following:
stringValue

string

String typed attribute value.

boolValue

boolean

Boolean typed attribute value.

numberValue

number

Double typed attribute value.