ListDeliveryVehiclesLog

Details on the ListDeliveryVehicles request and response.

Note: This log is subject to splitting on the response.delivery_vehicles field if the total log size exceeds 256 KB. See Split Logs / for more details.

JSON representation
{
  "header": {
    object (DeliveryRequestHeaderLog)
  },
  "request": {
    object (ListDeliveryVehiclesRequestLog)
  },
  "response": {
    object (ListDeliveryVehiclesResponseLog)
  },
  "errorResponse": {
    object (ErrorResponseLog)
  }
}
Fields
header

object (DeliveryRequestHeaderLog)

Request header.

request

object (ListDeliveryVehiclesRequestLog)

The request sent to the Deliveries API.

response

object (ListDeliveryVehiclesResponseLog)

The response returned to the client. It will be unset if the RPC call resulted in an error.

errorResponse

object (ErrorResponseLog)

The error response returned to the client. It will be unset if the RPC call succeeded.

ListDeliveryVehiclesRequestLog

Details on the ListDeliveryVehicles request.

JSON representation
{
  "pageSize": integer,
  "pageToken": string,
  "filter": string,
  "viewport": {
    object (ViewportLog)
  }
}
Fields
pageSize

integer

The maximum number of DeliveryVehicles to return. The service may return fewer than this value. If unspecified, the server decides the number of results to return.

pageToken

string

A page token, received from a previous ListDeliveryVehicles call.

filter

string

A filter query to apply when listing delivery vehicles. If no value is specified or filter is an empty string, all delivery vehicles will be returned.

viewport

object (ViewportLog)

A filter that limits the vehicles returned to those whose last known location was in the rectangular area defined by the viewport.

ViewportLog

A latitude-longitude viewport, represented as two diagonally opposite low and high points.

JSON representation
{
  "low": {
    object (LatLng)
  },
  "high": {
    object (LatLng)
  }
}
Fields
low

object (LatLng)

The low point of the viewport.

high

object (LatLng)

The high point of the viewport.

ListDeliveryVehiclesResponseLog

Details on the ListDeliveryVehicles response.

JSON representation
{
  "deliveryVehicles": [
    {
      object (DeliveryVehicleLog)
    }
  ],
  "totalSize": string
}
Fields
deliveryVehicles[]

object (DeliveryVehicleLog)

The delivery vehicles matching the specified query filter, or all delivery vehicles if no filter is specified in the request.

totalSize

string (int64 format)

Total delivery vehicles that all pages would have returned.