Skip to content

Commit

Permalink
πŸ› asset.balance_as_of
Browse files Browse the repository at this point in the history
  • Loading branch information
juftin authored Jan 6, 2024
1 parent 3bf1f5c commit f446338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lunchable/models/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ class AssetsObject(LunchableModel):
None, description="Display name of the asset (as set by user)"
)
balance: float = Field(description=_AssetsDescriptions.balance)
balance_as_of: datetime.datetime = Field(
description=_AssetsDescriptions.balance_as_of
balance_as_of: Optional[datetime.datetime] = Field(
None, description=_AssetsDescriptions.balance_as_of
)
closed_on: Optional[datetime.date] = Field(
None, description=_AssetsDescriptions.closed_on
Expand Down

0 comments on commit f446338

Please sign in to comment.