fix: models for deeplink (#63)

* fix models for deeplink

on wipe data is empty

* fix optional str
This commit is contained in:
Tiago Vasconcelos 2025-12-16 10:57:11 +00:00 committed by GitHub
commit 407506ad9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.")