Skip to content

Commit 5ca1757

Browse files
committed
SP-1093 Allow PayoutRecipient notification_url to be None since default is None
1 parent 04d8e08 commit 5ca1757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitpay/models/payout/payout_recipient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class PayoutRecipient(BitPayModel):
1616

1717
email: Union[str, None] = None
1818
label: Union[str, None] = None
19-
notification_url: str = Field(alias="notificationURL", default=None)
19+
notification_url: Union[str, None] = Field(alias="notificationURL", default=None)
2020
status: Union[str, None] = None
2121
id: Union[str, None] = None
2222
shopper_id: Union[str, None] = None

0 commit comments

Comments
 (0)