We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 674f761 + b3db37c commit 3da0ff7Copy full SHA for 3da0ff7
huntflow_api_client/models/response/dictionaries.py
@@ -29,6 +29,10 @@ class DictionaryItem(BaseModel):
29
description="The unique identifier in the customer's internal system",
30
)
31
created: datetime = Field(..., description="Date and time of creating a dictionary")
32
+ last_sync: Optional[datetime] = Field(
33
+ None,
34
+ description="Date and time of last dictionary synchronization",
35
+ )
36
37
38
class DictionariesListResponse(BaseModel):
pyproject.toml
@@ -1,7 +1,7 @@
1
2
[project]
3
name = "huntflow-api-client"
4
-version = "2.12.0"
+version = "2.13.0"
5
description = "Huntflow API Client for Python"
6
authors = [
7
{name = "Developers huntflow", email = "developer@huntflow.ru"},
0 commit comments