fix: models for deeplink (#63)
* fix models for deeplink on wipe data is empty * fix optional str
This commit is contained in:
parent
f08060d0f4
commit
407506ad9f
1 changed files with 2 additions and 2 deletions
|
|
@ -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.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue