18 lines
400 B
Python
18 lines
400 B
Python
|
|
import dynamix_sdk.base as _base
|
||
|
|
from .add_user import *
|
||
|
|
from .delete_user import *
|
||
|
|
from .disable import *
|
||
|
|
from .enable import *
|
||
|
|
from .update_user import *
|
||
|
|
|
||
|
|
|
||
|
|
class CloudapiAccountAPI(
|
||
|
|
_base.BaseAPI,
|
||
|
|
CloudapiAccountAddUserProtocol,
|
||
|
|
CloudapiAccountDeleteUserProtocol,
|
||
|
|
CloudapiAccountDisableProtocol,
|
||
|
|
CloudapiAccountEnableProtocol,
|
||
|
|
CloudapiAccountUpdateUserProtocol,
|
||
|
|
):
|
||
|
|
pass
|