VehicleAttributeLog

Describe un atributo de vehículo como un par clave-valor.

Representación 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.
}
Campos
key

string

La clave del atributo, por ejemplo, allowed_use_carpool_lane.

value

string

El valor del atributo; por ejemplo, true.

Campo de unión vehicle_attribute_value. El valor del atributo puede ser string, bool o doble tipo. Las direcciones (vehicle_attribute_value) solo pueden ser una de las siguientes opciones:
stringValue

string

Es el valor del atributo de tipo de string.

boolValue

boolean

Valor del atributo de tipo booleano.

numberValue

number

Es un valor de atributo de tipo doble.