File tree Expand file tree Collapse file tree 6 files changed +31
-29
lines changed
Expand file tree Collapse file tree 6 files changed +31
-29
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 28
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-d04668d97c66a80708cb1896ce9638dc2b55670ed447b67d9833f6a5349cc210 .yml
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-6f08502508c8ad25235971add3124a1cde4f1c3ec705d5df455d750e0adcb90b .yml
Original file line number Diff line number Diff line change 2222class ScheduleForRouteRetrieveResponseDataEntryStop (BaseModel ):
2323 id : str
2424
25- code : str
26-
2725 lat : float
2826
2927 lon : float
3028
3129 name : str
3230
33- direction : Optional [ str ] = None
31+ parent : str
3432
35- location_type : Optional [ int ] = FieldInfo (alias = "locationType" , default = None )
33+ route_ids : List [ str ] = FieldInfo (alias = "routeIds" )
3634
37- parent : Optional [str ] = None
35+ static_route_ids : List [str ] = FieldInfo ( alias = "staticRouteIds" )
3836
39- route_ids : Optional [List [ str ]] = FieldInfo ( alias = "routeIds" , default = None )
37+ code : Optional [str ] = None
4038
41- static_route_ids : Optional [List [str ]] = FieldInfo (alias = "staticRouteIds" , default = None )
39+ direction : Optional [str ] = None
40+
41+ location_type : Optional [int ] = FieldInfo (alias = "locationType" , default = None )
4242
4343 wheelchair_boarding : Optional [str ] = FieldInfo (alias = "wheelchairBoarding" , default = None )
4444
Original file line number Diff line number Diff line change 1414class SearchForStopListResponseDataList (BaseModel ):
1515 id : str
1616
17- code : str
18-
1917 lat : float
2018
2119 lon : float
2220
2321 name : str
2422
25- direction : Optional [ str ] = None
23+ parent : str
2624
27- location_type : Optional [ int ] = FieldInfo (alias = "locationType" , default = None )
25+ route_ids : List [ str ] = FieldInfo (alias = "routeIds" )
2826
29- parent : Optional [str ] = None
27+ static_route_ids : List [str ] = FieldInfo ( alias = "staticRouteIds" )
3028
31- route_ids : Optional [List [ str ]] = FieldInfo ( alias = "routeIds" , default = None )
29+ code : Optional [str ] = None
3230
33- static_route_ids : Optional [List [str ]] = FieldInfo (alias = "staticRouteIds" , default = None )
31+ direction : Optional [str ] = None
32+
33+ location_type : Optional [int ] = FieldInfo (alias = "locationType" , default = None )
3434
3535 wheelchair_boarding : Optional [str ] = FieldInfo (alias = "wheelchairBoarding" , default = None )
3636
Original file line number Diff line number Diff line change @@ -197,23 +197,23 @@ class Situation(BaseModel):
197197class Stop (BaseModel ):
198198 id : str
199199
200- code : str
201-
202200 lat : float
203201
204202 lon : float
205203
206204 name : str
207205
208- direction : Optional [ str ] = None
206+ parent : str
209207
210- location_type : Optional [ int ] = FieldInfo (alias = "locationType" , default = None )
208+ route_ids : List [ str ] = FieldInfo (alias = "routeIds" )
211209
212- parent : Optional [str ] = None
210+ static_route_ids : List [str ] = FieldInfo ( alias = "staticRouteIds" )
213211
214- route_ids : Optional [List [ str ]] = FieldInfo ( alias = "routeIds" , default = None )
212+ code : Optional [str ] = None
215213
216- static_route_ids : Optional [List [str ]] = FieldInfo (alias = "staticRouteIds" , default = None )
214+ direction : Optional [str ] = None
215+
216+ location_type : Optional [int ] = FieldInfo (alias = "locationType" , default = None )
217217
218218 wheelchair_boarding : Optional [str ] = FieldInfo (alias = "wheelchairBoarding" , default = None )
219219
Original file line number Diff line number Diff line change 1414class StopRetrieveResponseDataEntry (BaseModel ):
1515 id : str
1616
17- code : str
18-
1917 lat : float
2018
2119 lon : float
2220
2321 name : str
2422
25- direction : Optional [ str ] = None
23+ parent : str
2624
27- location_type : Optional [ int ] = FieldInfo (alias = "locationType" , default = None )
25+ route_ids : List [ str ] = FieldInfo (alias = "routeIds" )
2826
29- parent : Optional [str ] = None
27+ static_route_ids : List [str ] = FieldInfo ( alias = "staticRouteIds" )
3028
31- route_ids : Optional [List [ str ]] = FieldInfo ( alias = "routeIds" , default = None )
29+ code : Optional [str ] = None
3230
33- static_route_ids : Optional [List [str ]] = FieldInfo (alias = "staticRouteIds" , default = None )
31+ direction : Optional [str ] = None
32+
33+ location_type : Optional [int ] = FieldInfo (alias = "locationType" , default = None )
3434
3535 wheelchair_boarding : Optional [str ] = FieldInfo (alias = "wheelchairBoarding" , default = None )
3636
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ class StopsForLocationListResponseData(BaseModel):
4242
4343 references : References
4444
45+ out_of_range : Optional [bool ] = FieldInfo (alias = "outOfRange" , default = None )
46+
4547
4648class StopsForLocationListResponse (ResponseWrapper ):
4749 data : StopsForLocationListResponseData
You can’t perform that action at this time.
0 commit comments