Files
dynamix-python-sdk/src/dynamix_sdk/api/_api.py
2026-03-13 17:18:28 +03:00

23 lines
402 B
Python

import dynamix_sdk.base as _base
from .cloudapi import *
from .cloudbroker import *
from .system import *
class API(_base.BaseAPI):
cloudapi: CloudapiAPI
cloudbroker: CloudbrokerAPI
system: SystemAPI
@property
def ca(self):
return self.cloudapi
@property
def cb(self):
return self.cloudbroker
@property
def sys(self):
return self.system