kassa work correct

This commit is contained in:
Gitea
2022-01-20 17:56:38 +09:00
parent 831bb26887
commit 11d3d2644f
7 changed files with 57 additions and 30 deletions

View File

@ -207,6 +207,13 @@ class Sell(BaseModel):
class Config:
arbitrary_types_allowed = True
class AtolSell(BaseModel):
uuid: str
timestamp: str
status: Optional[str] = None
error: Error = None
class Config:
orm_mode = True
class SellCreate(Sell):
is_refund: bool