Skip to content

Commit

Permalink
SP-883 Python 5.0.3 - Pydantic validation
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarzybok-sumoheavy committed Feb 28, 2024
1 parent 3b5f087 commit e9ab3e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bitpay/models/invoice/invoice_refund_addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@


class InvoiceRefundAddress(BitPayModel):
date: Union[datetime, None]
email: Union[str, None]
date: Union[datetime, None] = None
email: Union[str, None] = None
tag: Union[int, None] = None
type: Union[str, None] = None

Expand Down

0 comments on commit e9ab3e2

Please sign in to comment.