You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
430 B
18 lines
430 B
import dynamix_sdk.base as _base
|
|
import dynamix_sdk.api._nested as _nested
|
|
|
|
|
|
class CloudapiAccountUpdateUserResultBool(_base.BaseAPIResultBool):
|
|
pass
|
|
|
|
|
|
class CloudapiAccountUpdateUserProtocol(_base.BasePostAPIFunctionProtocol):
|
|
def update_user(
|
|
self,
|
|
*,
|
|
account_id: int,
|
|
access_type: _nested.AccessTypeForSet,
|
|
user_id: str,
|
|
) -> CloudapiAccountUpdateUserResultBool:
|
|
...
|