1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# StopTime
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**place** | [**models::Place**](Place.md) | information about the stop place and time |
**mode** | [**models::Mode**](Mode.md) | Transport mode for this leg |
**real_time** | **bool** | Whether there is real-time data about this leg |
**headsign** | **String** | The headsign of the bus or train being used. For non-transit legs, null |
**trip_to** | [**models::Place**](Place.md) | final stop of this trip |
**agency_id** | **String** | |
**agency_name** | **String** | |
**agency_url** | **String** | |
**route_color** | Option<**String**> | | [optional]
**route_text_color** | Option<**String**> | | [optional]
**trip_id** | **String** | |
**route_type** | Option<**i32**> | | [optional]
**route_short_name** | **String** | |
**route_long_name** | **String** | |
**trip_short_name** | **String** | |
**display_name** | **String** | |
**previous_stops** | Option<[**Vec<models::Place>**](Place.md)> | Experimental. Expect unannounced breaking changes (without version bumps). Stops on the trips before this stop. Returned only if `fetchStop` and `arriveBy` are `true`. | [optional]
**next_stops** | Option<[**Vec<models::Place>**](Place.md)> | Experimental. Expect unannounced breaking changes (without version bumps). Stops on the trips after this stop. Returned only if `fetchStop` is `true` and `arriveBy` is `false`. | [optional]
**pickup_dropoff_type** | [**models::PickupDropoffType**](PickupDropoffType.md) | Type of pickup (for departures) or dropoff (for arrivals), may be disallowed either due to schedule, skipped stops or cancellations |
**cancelled** | **bool** | Whether the departure/arrival is cancelled due to the realtime situation (either because the stop is skipped or because the entire trip is cancelled). |
**trip_cancelled** | **bool** | Whether the entire trip is cancelled due to the realtime situation. |
**source** | **String** | Filename and line number where this trip is from |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|