We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec187e commit b8342d8Copy full SHA for b8342d8
2 files changed
huntflow_api_client/models/response/dictionaries.py
@@ -61,4 +61,8 @@ class DictionaryResponse(BaseModel):
61
description="The unique identifier in the customer's internal system",
62
)
63
created: datetime = Field(..., description="Date and time of creating a dictionary")
64
+ last_sync: Optional[datetime] = Field(
65
+ None,
66
+ description="Date and time of last dictionary synchronization",
67
+ )
68
fields: List[DictionaryField] = Field(..., description="List of dictionary fields")
pyproject.toml
@@ -1,7 +1,7 @@
1
2
[project]
3
name = "huntflow-api-client"
4
-version = "2.11.0"
+version = "2.12.0"
5
description = "Huntflow API Client for Python"
6
authors = [
7
{name = "Developers huntflow", email = "developer@huntflow.ru"},
0 commit comments