TripStatusLog
Stay organized with collections
Save and categorize content based on your preferences.
The status of a trip indicating its progression.
Enums |
TRIP_STATUS_LOG_UNSPECIFIED |
Default, used for unspecified or unrecognized trip status. |
TRIP_STATUS_NEW |
Newly created trip. |
TRIP_STATUS_ENROUTE_TO_PICKUP |
The driver is on their way to the pickup point. |
TRIP_STATUS_ARRIVED_AT_PICKUP |
The driver has arrived at the pickup point. |
TRIP_STATUS_ARRIVED_AT_INTERMEDIATE_DESTINATION |
The driver has arrived at an intermediate destination and is waiting for the rider. |
TRIP_STATUS_ENROUTE_TO_INTERMEDIATE_DESTINATION |
The driver is on their way to an intermediate destination (not the dropoff point). |
TRIP_STATUS_ENROUTE_TO_DROPOFF |
The driver has picked up the rider and is on their way to the next destination. |
TRIP_STATUS_COMPLETE |
The rider has been dropped off and the trip is complete. |
TRIP_STATUS_CANCELED |
The trip was canceled prior to pickup by the driver, rider, or rideshare provider. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-24 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-24 UTC."],[[["The trip status indicates the progression of a trip, from its creation to its completion."],["Statuses include stages like en route to pickup, arrival, intermediate stops, and final drop-off."],["A trip can be in a `Complete` or `Canceled` state, indicating its final outcome."],["`TRIP_STATUS_LOG_UNSPECIFIED` is used for default or unrecognized trip states."]]],["The provided information details the progression of a trip through various statuses. These statuses include `NEW`, `ENROUTE_TO_PICKUP`, `ARRIVED_AT_PICKUP`, `ENROUTE_TO_INTERMEDIATE_DESTINATION`, `ARRIVED_AT_INTERMEDIATE_DESTINATION`, `ENROUTE_TO_DROPOFF`, and `COMPLETE`. Trips can also be `CANCELED`. Each status represents a specific stage, from creation and driver dispatch to rider pickup, intermediate stops, drop-off, or cancellation. An `UNSPECIFIED` status is a default for unknown statuses.\n"]]