Skip to content

Commit 807f7db

Browse files
committed
push
1 parent 1c83406 commit 807f7db

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

langfuse/api/resources/projects/types/project.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ class Project(pydantic_v1.BaseModel):
1515
Metadata for the project
1616
"""
1717

18-
retention_days: int = pydantic_v1.Field(alias="retentionDays")
18+
retention_days: typing.Optional[int] = pydantic_v1.Field(
19+
alias="retentionDays", default=None
20+
)
1921
"""
2022
Number of days to retain data. Null or 0 means no retention. Omitted if no retention is configured.
2123
"""

0 commit comments

Comments
 (0)