-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b14ec2
commit 2d32178
Showing
11 changed files
with
377 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 5 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-968a191603d7f019c6df1700eb3973fcb80eb33b9a8f90ed4b467f4d99cbd1f3.yml | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-5d617d52440ac79a1c1439de48da5ed5a24ff41fbbb873f17bff743aa9187921.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/onebusaway/types/arrivals_and_departures_for_stop_retrieve_params.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing_extensions import Required, Annotated, TypedDict | ||
|
||
from .._utils import PropertyInfo | ||
|
||
__all__ = ["ArrivalsAndDeparturesForStopRetrieveParams"] | ||
|
||
|
||
class ArrivalsAndDeparturesForStopRetrieveParams(TypedDict, total=False): | ||
service_date: Required[Annotated[int, PropertyInfo(alias="serviceDate")]] | ||
|
||
trip_id: Required[Annotated[str, PropertyInfo(alias="tripId")]] | ||
|
||
stop_sequence: Annotated[int, PropertyInfo(alias="stopSequence")] | ||
|
||
time: int | ||
|
||
vehicle_id: Annotated[str, PropertyInfo(alias="vehicleId")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.