lnbits-legend/lnbits/extensions/lnurlpayout/models.py

19 lines
281 B
Python
Raw Normal View History

2021-11-28 18:11:35 +00:00
from sqlite3 import Row
from pydantic import BaseModel
2022-01-30 19:43:30 +00:00
2021-11-28 18:11:35 +00:00
class CreateLnurlPayoutData(BaseModel):
2021-12-16 23:39:51 +00:00
title: str
2021-11-28 18:11:35 +00:00
lnurlpay: str
threshold: int
2022-01-30 19:43:30 +00:00
2021-11-28 18:11:35 +00:00
class lnurlpayout(BaseModel):
id: str
2021-12-09 18:04:04 +00:00
title: str
2021-11-28 18:11:35 +00:00
wallet: str
2021-12-17 12:15:33 +00:00
admin_key: str
2021-11-28 18:11:35 +00:00
lnurlpay: str
2021-12-19 22:28:19 +00:00
threshold: int