docs: correct SearchVehiclesRequest.ordered_by description

PiperOrigin-RevId: 704403622
This commit is contained in:
Google APIs 2024-12-09 13:45:46 -08:00 committed by Copybara-Service
parent ac60199b4d
commit 4e78e682ef

View file

@ -771,13 +771,12 @@ message VehicleMatch {
// Type of the vehicle match.
VehicleMatchType vehicle_match_type = 8;
// The order requested for sorting vehicle matches.
// The order requested for sorting vehicle matches. Equivalent to
// `ordered_by`.
SearchVehiclesRequest.VehicleMatchOrder requested_ordered_by = 9;
// The actual order that was used for this vehicle. Normally this
// will match the 'order_by' field from the request; however, in certain
// circumstances such as an internal server error, a different method
// may be used (such as `PICKUP_POINT_STRAIGHT_DISTANCE`).
// The order requested for sorting vehicle matches. Equivalent to
// `requested_ordered_by`.
SearchVehiclesRequest.VehicleMatchOrder ordered_by = 10;
}