lnbits-legend/lnbits/extensions/tipjar/models.py
2022-12-30 08:48:31 +01:00

57 lines
1.1 KiB
Python

from sqlite3 import Row
from typing import Optional
from pydantic import BaseModel
class createTip(BaseModel):
id: str
wallet: str
sats: int
tipjar: int
name: str = "Anonymous"
message: str = ""
class Tip(BaseModel):
"""A Tip represents a single donation"""
id: str # This ID always corresponds to a satspay charge ID
wallet: str
name: str # Name of the donor
message: str # Donation message
sats: int
tipjar: int # The ID of the corresponding tip jar
@classmethod
def from_row(cls, row: Row) -> "Tip":
return cls(**dict(row))
class createTipJar(BaseModel):
name: str
wallet: str
webhook: Optional[str]
onchain: Optional[str]
class createTips(BaseModel):
name: str
sats: str
tipjar: str
message: str
class TipJar(BaseModel):
"""A TipJar represents a user's tip jar"""
id: int
name: str # The name of the donatee
wallet: str # Lightning wallet
onchain: Optional[str] # Watchonly wallet
webhook: Optional[str] # URL to POST tips to
@classmethod
def from_row(cls, row: Row) -> "TipJar":
return cls(**dict(row))