account token (#820, #834)

This commit is contained in:
Michael Quigley
2025-02-04 14:16:16 -05:00
parent 4e81bbf80b
commit fa8200a603
10 changed files with 24 additions and 20 deletions

View File

@ -70,7 +70,7 @@ void (empty response body)
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# **create_account**
> VerifyBody create_account(body=body)
> InlineResponse200 create_account(body=body)
@ -107,7 +107,7 @@ Name | Type | Description | Notes
### Return type
[**VerifyBody**](VerifyBody.md)
[**InlineResponse200**](InlineResponse200.md)
### Authorization

View File

@ -131,7 +131,7 @@ class AdminApi(object):
:param async_req bool
:param AccountBody body:
:return: VerifyBody
:return: InlineResponse200
If the method is called asynchronously,
returns the request thread.
"""
@ -152,7 +152,7 @@ class AdminApi(object):
:param async_req bool
:param AccountBody body:
:return: VerifyBody
:return: InlineResponse200
If the method is called asynchronously,
returns the request thread.
"""
@ -206,7 +206,7 @@ class AdminApi(object):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='VerifyBody', # noqa: E501
response_type='InlineResponse200', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),