@@ -79,6 +79,7 @@ def retrieve_project(self, id={}, **kwargs): # noqa: E501
79
79
80
80
:param async_req bool: execute request asynchronously
81
81
:param str id: (required)
82
+ :param str accept_language:
82
83
:param _preload_content: if False, the urllib3.HTTPResponse object will
83
84
be returned without reading/decoding response
84
85
data. Default is True.
@@ -104,6 +105,7 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
104
105
105
106
:param async_req bool: execute request asynchronously
106
107
:param str id: (required)
108
+ :param str accept_language:
107
109
:param _return_http_data_only: response data without head status code
108
110
and headers
109
111
:param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -120,7 +122,7 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
120
122
121
123
local_var_params = locals ()
122
124
123
- all_params = ["id" ] # noqa: E501
125
+ all_params = ["id" , "accept_language" ] # noqa: E501
124
126
all_params .append ("async_req" )
125
127
all_params .append ("_return_http_data_only" )
126
128
all_params .append ("_preload_content" )
@@ -193,6 +195,10 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
193
195
query_params .append ([key , kwargs .get (key )])
194
196
195
197
header_params = {}
198
+ if "accept_language" in local_var_params :
199
+ header_params ["Accept-Language" ] = local_var_params [
200
+ "accept_language"
201
+ ] # noqa: E501
196
202
197
203
form_params = []
198
204
local_var_files = {}
@@ -240,6 +246,7 @@ def retrieve_projects(self, **kwargs): # noqa: E501
240
246
:param str country:
241
247
:param str type:
242
248
:param int minimum_available_mass:
249
+ :param str accept_language:
243
250
:param _preload_content: if False, the urllib3.HTTPResponse object will
244
251
be returned without reading/decoding response
245
252
data. Default is True.
@@ -268,6 +275,7 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
268
275
:param str country:
269
276
:param str type:
270
277
:param int minimum_available_mass:
278
+ :param str accept_language:
271
279
:param _return_http_data_only: response data without head status code
272
280
and headers
273
281
:param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -284,7 +292,13 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
284
292
285
293
local_var_params = locals ()
286
294
287
- all_params = ["page" , "country" , "type" , "minimum_available_mass" ] # noqa: E501
295
+ all_params = [
296
+ "page" ,
297
+ "country" ,
298
+ "type" ,
299
+ "minimum_available_mass" ,
300
+ "accept_language" ,
301
+ ] # noqa: E501
288
302
all_params .append ("async_req" )
289
303
all_params .append ("_return_http_data_only" )
290
304
all_params .append ("_preload_content" )
@@ -360,6 +374,10 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
360
374
query_params .append ([key , kwargs .get (key )])
361
375
362
376
header_params = {}
377
+ if "accept_language" in local_var_params :
378
+ header_params ["Accept-Language" ] = local_var_params [
379
+ "accept_language"
380
+ ] # noqa: E501
363
381
364
382
form_params = []
365
383
local_var_files = {}
0 commit comments