Skip to content

Commit

Permalink
fix: add optional to currency of Journal model (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiohiohio authored Oct 2, 2024
1 parent 6618941 commit c60eb8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alpaca/broker/models/journals.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Journal(ModelWithID):
transmitter_address: Optional[str] = None
transmitter_financial_institution: Optional[str] = None
transmitter_timestamp: Optional[str] = None
currency: SupportedCurrencies
currency: Optional[SupportedCurrencies] = None


class BatchJournalResponse(Journal):
Expand Down

0 comments on commit c60eb8a

Please sign in to comment.