You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An **unofficial** Python API for [Passio Go](https://passiogo.com/) allowing anyone to build transit-based applications for hundreds of Universities, Municipalities, Paratransit, and Airports.
asserttype(self.id) ==int, f"'id' parameter must be an int not {type(self.id)}"
80
+
81
+
# name : str or None
82
+
assert (type(self.name) ==strorself.nameisNone), f"'name' parameter must be a str not {type(self.name)}"
83
+
84
+
# username : str or None
85
+
assert (type(self.username) ==strorself.usernameisNone), f"'username' parameter must be a str not {type(self.username)}"
86
+
87
+
# goAgencyName : str or None
88
+
assert (type(self.goAgencyName) ==strorself.goAgencyNameisNone), f"'goAgencyName' parameter must be a str not {type(self.goAgencyName)}"
89
+
90
+
# email : str or None
91
+
assert (type(self.email) ==strorself.emailisNone), f"'email' parameter must be a str not {type(self.email)}"
92
+
93
+
# goTestMode : bool or None
94
+
assert (type(self.goTestMode) ==boolorself.goTestModeisNone), f"'goTestMode' parameter must be a bool not {type(self.goTestMode)}"
95
+
96
+
# name2 : bool or None
97
+
assert (type(self.name2) ==boolorself.name2isNone), f"'name2' parameter must be a bool not {type(self.name2)}"
98
+
99
+
# homepage : str or None
100
+
assert (type(self.homepage) ==strorself.homepageisNone), f"'homepage' parameter must be a str not {type(self.homepage)}"
101
+
102
+
# logo : bool or None
103
+
assert (type(self.logo) ==boolorself.logoisNone), f"'logo' parameter must be a bool not {type(self.logo)}"
104
+
105
+
# goRoutePlannerEnabled : bool or None
106
+
assert (type(self.goRoutePlannerEnabled) ==boolorself.goRoutePlannerEnabledisNone), f"'goRoutePlannerEnabled' parameter must be a bool not {type(self.goRoutePlannerEnabled)}"
107
+
108
+
# goColor : str or None
109
+
assert (type(self.goColor) ==strorself.goColorisNone), f"'goColor' parameter must be a str not {type(self.goColor)}"
110
+
111
+
# goSupportEmail : str or None
112
+
assert (type(self.goSupportEmail) ==strorself.goSupportEmailisNone), f"'goSupportEmail' parameter must be a str not {type(self.goSupportEmail)}"
113
+
114
+
# goSharedCode : int or None
115
+
assert (type(self.goSharedCode) ==intorself.goSharedCodeisNone), f"'goSharedCode' parameter must be a int not {type(self.goSharedCode)}"
116
+
117
+
# goAuthenticationType : bool or None
118
+
assert (type(self.goAuthenticationType) ==boolorself.goAuthenticationTypeisNone), f"'goAuthenticationType' parameter must be a bool not {type(self.goAuthenticationType)}"
119
+
120
+
121
+
defgetSystems(
122
+
appVersion=2,
123
+
sortMode=1,
124
+
) ->list[TransportationSystem]:
125
+
'''
126
+
Gets all systems. Returns a list of TransportationSystem.
0 commit comments