@@ -39,18 +39,18 @@ def get_event(self, id, **kwargs):
3939 """
4040 Returns the specific event
4141 This method makes a synchronous HTTP request by default. To make an
42- asynchronous HTTP request, please pass async =True
43- >>> thread = api.get_event(id, async =True)
42+ asynchronous HTTP request, please pass async_ =True
43+ >>> thread = api.get_event(id, async_ =True)
4444 >>> result = thread.get()
4545
46- :param async bool
46+ :param async_ bool
4747 :param str id: (required)
4848 :return: EventResponse
4949 If the method is called asynchronously,
5050 returns the request thread.
5151 """
5252 kwargs ['_return_http_data_only' ] = True
53- if kwargs .get ('async ' ):
53+ if kwargs .get ('async_ ' ):
5454 return self .get_event_with_http_info (id , ** kwargs )
5555 else :
5656 (data ) = self .get_event_with_http_info (id , ** kwargs )
@@ -60,19 +60,19 @@ def get_event_with_http_info(self, id, **kwargs):
6060 """
6161 Returns the specific event
6262 This method makes a synchronous HTTP request by default. To make an
63- asynchronous HTTP request, please pass async =True
64- >>> thread = api.get_event_with_http_info(id, async =True)
63+ asynchronous HTTP request, please pass async_ =True
64+ >>> thread = api.get_event_with_http_info(id, async_ =True)
6565 >>> result = thread.get()
6666
67- :param async bool
67+ :param async_ bool
6868 :param str id: (required)
6969 :return: EventResponse
7070 If the method is called asynchronously,
7171 returns the request thread.
7272 """
7373
7474 all_params = ['id' ]
75- all_params .append ('async ' )
75+ all_params .append ('async_ ' )
7676 all_params .append ('_return_http_data_only' )
7777 all_params .append ('_preload_content' )
7878 all_params .append ('_request_timeout' )
@@ -121,7 +121,7 @@ def get_event_with_http_info(self, id, **kwargs):
121121 files = local_var_files ,
122122 response_type = 'EventResponse' ,
123123 auth_settings = auth_settings ,
124- async = params .get ('async ' ),
124+ async_ = params .get ('async_ ' ),
125125 _return_http_data_only = params .get ('_return_http_data_only' ),
126126 _preload_content = params .get ('_preload_content' , True ),
127127 _request_timeout = params .get ('_request_timeout' ),
@@ -131,11 +131,11 @@ def get_events(self, **kwargs):
131131 """
132132 Returns a list of events
133133 This method makes a synchronous HTTP request by default. To make an
134- asynchronous HTTP request, please pass async =True
135- >>> thread = api.get_events(async =True)
134+ asynchronous HTTP request, please pass async_ =True
135+ >>> thread = api.get_events(async_ =True)
136136 >>> result = thread.get()
137137
138- :param async bool
138+ :param async_ bool
139139 :param int limit:
140140 :param str starting_after:
141141 :param str ending_before:
@@ -146,7 +146,7 @@ def get_events(self, **kwargs):
146146 returns the request thread.
147147 """
148148 kwargs ['_return_http_data_only' ] = True
149- if kwargs .get ('async ' ):
149+ if kwargs .get ('async_ ' ):
150150 return self .get_events_with_http_info (** kwargs )
151151 else :
152152 (data ) = self .get_events_with_http_info (** kwargs )
@@ -156,11 +156,11 @@ def get_events_with_http_info(self, **kwargs):
156156 """
157157 Returns a list of events
158158 This method makes a synchronous HTTP request by default. To make an
159- asynchronous HTTP request, please pass async =True
160- >>> thread = api.get_events_with_http_info(async =True)
159+ asynchronous HTTP request, please pass async_ =True
160+ >>> thread = api.get_events_with_http_info(async_ =True)
161161 >>> result = thread.get()
162162
163- :param async bool
163+ :param async_ bool
164164 :param int limit:
165165 :param str starting_after:
166166 :param str ending_before:
@@ -172,7 +172,7 @@ def get_events_with_http_info(self, **kwargs):
172172 """
173173
174174 all_params = ['limit' , 'starting_after' , 'ending_before' , 'school' , 'record_type' ]
175- all_params .append ('async ' )
175+ all_params .append ('async_ ' )
176176 all_params .append ('_return_http_data_only' )
177177 all_params .append ('_preload_content' )
178178 all_params .append ('_request_timeout' )
@@ -227,7 +227,7 @@ def get_events_with_http_info(self, **kwargs):
227227 files = local_var_files ,
228228 response_type = 'EventsResponse' ,
229229 auth_settings = auth_settings ,
230- async = params .get ('async ' ),
230+ async_ = params .get ('async_ ' ),
231231 _return_http_data_only = params .get ('_return_http_data_only' ),
232232 _preload_content = params .get ('_preload_content' , True ),
233233 _request_timeout = params .get ('_request_timeout' ),
0 commit comments