We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7e2a0e + 3eaad58 commit 47ce7c7Copy full SHA for 47ce7c7
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "remnawave"
3
-version = "2.3.2rc2"
+version = "2.3.2rc3"
4
description = "A Python SDK for interacting with the Remnawave API v2.3.2."
5
authors = [
6
{name = "Artem",email = "dev@forestsnet.com"}
remnawave/models/nodes_usage_history.py
@@ -49,10 +49,12 @@ def __len__(self):
49
50
51
class UserUsageDto(BaseModel):
52
+ """User usage data with node information"""
53
user_uuid: UUID = Field(alias="userUuid")
54
+ node_uuid: UUID = Field(alias="nodeUuid")
55
username: str
- upload: int
- download: int
56
+ total: int
57
+ date: datetime
58
59
60
class GetNodeUserUsageByRangeResponseDto(RootModel[List[UserUsageDto]]):
0 commit comments