This commit is contained in:
2025-03-21 17:47:09 +03:00
commit 346ffd4255
54 changed files with 2565 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import dynamix_sdk.base as _base
class SystemUsermanagerWhoamiResultModel(_base.BaseAPIResultModel):
admin: bool
name: str
roles: list[str]
class SystemUsermanagerWhoamiProtocol(_base.BasePostAPIFunctionProtocol):
def whoami(self) -> SystemUsermanagerWhoamiResultModel:
...