From 407506ad9fd662d9fd190fd2fb86dde39807b77e Mon Sep 17 00:00:00 2001 From: Tiago Vasconcelos Date: Tue, 16 Dec 2025 10:57:11 +0000 Subject: [PATCH] fix: models for deeplink (#63) * fix models for deeplink on wipe data is empty * fix optional str --- models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models.py b/models.py index 5cbafa9..0856594 100644 --- a/models.py +++ b/models.py @@ -74,5 +74,5 @@ class Refund(BaseModel): class UIDPost(BaseModel): - UID: str = Field(description="The UID of the card.") - LNURLW: str = Field(description="The LNURLW of the card.") + UID: str | None = Field(None, description="The UID of the card.") + LNURLW: str | None = Field(None, description="The LNURLW of the card.")