Skip to content

Fixed get_user_token method #109

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tb_rest_client/api/api_ce/user_controller_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def get_user_token_using_get(self, user_id, **kwargs): # noqa: E501

:param async_req bool
:param str user_id: A string value representing the user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9' (required)
:return: JWTTokenPair
:return: JWTPair
If the method is called asynchronously,
returns the request thread.
"""
Expand All @@ -595,7 +595,7 @@ def get_user_token_using_get_with_http_info(self, user_id, **kwargs): # noqa: E

:param async_req bool
:param str user_id: A string value representing the user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9' (required)
:return: JWTTokenPair
:return: JWTPair
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -649,7 +649,7 @@ def get_user_token_using_get_with_http_info(self, user_id, **kwargs): # noqa: E
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='JWTTokenPair', # noqa: E501
response_type='JWTPair', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
2 changes: 1 addition & 1 deletion tb_rest_client/api/api_pe/user_controller_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ def get_user_token_using_get_with_http_info(self, user_id, **kwargs): # noqa: E
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='JWTTokenPair', # noqa: E501
response_type='JWTPair', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down