@@ -79,6 +79,7 @@ def retrieve_project(self, id={}, **kwargs): # noqa: E501
7979
8080 :param async_req bool: execute request asynchronously
8181 :param str id: (required)
82+ :param str accept_language:
8283 :param _preload_content: if False, the urllib3.HTTPResponse object will
8384 be returned without reading/decoding response
8485 data. Default is True.
@@ -104,6 +105,7 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
104105
105106 :param async_req bool: execute request asynchronously
106107 :param str id: (required)
108+ :param str accept_language:
107109 :param _return_http_data_only: response data without head status code
108110 and headers
109111 :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
120122
121123 local_var_params = locals ()
122124
123- all_params = ["id" ] # noqa: E501
125+ all_params = ["id" , "accept_language" ] # noqa: E501
124126 all_params .append ("async_req" )
125127 all_params .append ("_return_http_data_only" )
126128 all_params .append ("_preload_content" )
@@ -193,6 +195,10 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
193195 query_params .append ([key , kwargs .get (key )])
194196
195197 header_params = {}
198+ if "accept_language" in local_var_params :
199+ header_params ["Accept-Language" ] = local_var_params [
200+ "accept_language"
201+ ] # noqa: E501
196202
197203 form_params = []
198204 local_var_files = {}
@@ -240,6 +246,7 @@ def retrieve_projects(self, **kwargs): # noqa: E501
240246 :param str country:
241247 :param str type:
242248 :param int minimum_available_mass:
249+ :param str accept_language:
243250 :param _preload_content: if False, the urllib3.HTTPResponse object will
244251 be returned without reading/decoding response
245252 data. Default is True.
@@ -268,6 +275,7 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
268275 :param str country:
269276 :param str type:
270277 :param int minimum_available_mass:
278+ :param str accept_language:
271279 :param _return_http_data_only: response data without head status code
272280 and headers
273281 :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -284,7 +292,13 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
284292
285293 local_var_params = locals ()
286294
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
288302 all_params .append ("async_req" )
289303 all_params .append ("_return_http_data_only" )
290304 all_params .append ("_preload_content" )
@@ -360,6 +374,10 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
360374 query_params .append ([key , kwargs .get (key )])
361375
362376 header_params = {}
377+ if "accept_language" in local_var_params :
378+ header_params ["Accept-Language" ] = local_var_params [
379+ "accept_language"
380+ ] # noqa: E501
363381
364382 form_params = []
365383 local_var_files = {}
0 commit comments