Skip to content

Commit

Permalink
fix: update feeds model with some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Giriharan219 committed Nov 7, 2024
1 parent 4f683f9 commit fb25866
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nisystemlink/clients/feeds/models/_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ class Package(JsonModel):
workspace: Optional[str] = None
"""The ID of the workspace this package belongs to.
The workspace of a package is the workspace of feed this package is associated with."""
updated_at: Optional[datetime]
updated_at: Optional[datetime] = None
"""The date of the latest package update."""
created_at: Optional[datetime]
created_at: Optional[datetime] = None
"""The date when the package was created at."""
metadata: Optional[PackageMetadata] = None
"""Package meta data."""
2 changes: 1 addition & 1 deletion nisystemlink/clients/feeds/models/_query_feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
class QueryFeedsResponse(JsonModel):
"""Query Feeds response."""

feeds: Optional[List[Feed]] = None
feeds: List[Feed]
"""A collection of feeds"""

0 comments on commit fb25866

Please sign in to comment.