We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c83406 commit 807f7dbCopy full SHA for 807f7db
1 file changed
langfuse/api/resources/projects/types/project.py
@@ -15,7 +15,9 @@ class Project(pydantic_v1.BaseModel):
15
Metadata for the project
16
"""
17
18
- retention_days: int = pydantic_v1.Field(alias="retentionDays")
+ retention_days: typing.Optional[int] = pydantic_v1.Field(
19
+ alias="retentionDays", default=None
20
+ )
21
22
Number of days to retain data. Null or 0 means no retention. Omitted if no retention is configured.
23
0 commit comments