File tree Expand file tree Collapse file tree 5 files changed +17
-17
lines changed
Expand file tree Collapse file tree 5 files changed +17
-17
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-a544d1ade5b8bb78126cb4b1c3d63d7e77da8ef302ad4a92e3eeb86964d90c4a .yml
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-83d4377b09e39943094f0bda53346388c12f40aa4646da2344e99116b5717e21 .yml
Original file line number Diff line number Diff line change 1212
1313
1414class RoutesForAgencyListResponseDataList (BaseModel ):
15- id : Optional [ str ] = None
15+ id : str
1616
17- agency_id : Optional [str ] = FieldInfo (alias = "agencyId" , default = None )
17+ agency_id : str = FieldInfo (alias = "agencyId" )
18+
19+ type : int
1820
1921 color : Optional [str ] = None
2022
@@ -28,8 +30,6 @@ class RoutesForAgencyListResponseDataList(BaseModel):
2830
2931 text_color : Optional [str ] = FieldInfo (alias = "textColor" , default = None )
3032
31- type : Optional [int ] = None
32-
3333 url : Optional [str ] = None
3434
3535
Original file line number Diff line number Diff line change 1616
1717
1818class RoutesForLocationListResponseDataList (BaseModel ):
19- id : Optional [ str ] = None
19+ id : str
2020
21- agency_id : Optional [str ] = FieldInfo (alias = "agencyId" , default = None )
21+ agency_id : str = FieldInfo (alias = "agencyId" )
22+
23+ type : int
2224
2325 color : Optional [str ] = None
2426
@@ -32,8 +34,6 @@ class RoutesForLocationListResponseDataList(BaseModel):
3234
3335 text_color : Optional [str ] = FieldInfo (alias = "textColor" , default = None )
3436
35- type : Optional [int ] = None
36-
3737 url : Optional [str ] = None
3838
3939
Original file line number Diff line number Diff line change 1616
1717
1818class SearchForRouteRetrieveResponseDataList (BaseModel ):
19- id : Optional [ str ] = None
19+ id : str
2020
21- agency_id : Optional [str ] = FieldInfo (alias = "agencyId" , default = None )
21+ agency_id : str = FieldInfo (alias = "agencyId" )
22+
23+ type : int
2224
2325 color : Optional [str ] = None
2426
@@ -32,8 +34,6 @@ class SearchForRouteRetrieveResponseDataList(BaseModel):
3234
3335 text_color : Optional [str ] = FieldInfo (alias = "textColor" , default = None )
3436
35- type : Optional [int ] = None
36-
3737 url : Optional [str ] = None
3838
3939
Original file line number Diff line number Diff line change @@ -50,9 +50,11 @@ class Agency(BaseModel):
5050
5151
5252class Route (BaseModel ):
53- id : Optional [ str ] = None
53+ id : str
5454
55- agency_id : Optional [str ] = FieldInfo (alias = "agencyId" , default = None )
55+ agency_id : str = FieldInfo (alias = "agencyId" )
56+
57+ type : int
5658
5759 color : Optional [str ] = None
5860
@@ -66,8 +68,6 @@ class Route(BaseModel):
6668
6769 text_color : Optional [str ] = FieldInfo (alias = "textColor" , default = None )
6870
69- type : Optional [int ] = None
70-
7171 url : Optional [str ] = None
7272
7373
You can’t perform that action at this time.
0 commit comments