VehicleRestrictedLog

  • The JSON representation provides restricted data from a VehicleLog, including the current route segment and remaining waypoints.

  • currentRouteSegment is a string containing the polyline of the driver's intended route to the next waypoint.

  • waypoints is an array of TripWaypointRestrictedLog objects, representing the remaining waypoints assigned to the vehicle.

Contains restricted data from a VehicleLog.

JSON representation
{
  "currentRouteSegment": string,
  "waypoints": [
    {
      object (TripWaypointRestrictedLog)
    }
  ]
}
Fields
currentRouteSegment

string

The polyline specifying the route the driver app intends to take to the next waypoint.

waypoints[]

object (TripWaypointRestrictedLog)

The remaining waypoints assigned to this Vehicle.