Initial commit

This commit is contained in:
2026-09-04 20:55:42 +03:00
commit 34d40fc219
52 changed files with 3967 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from pydantic import BaseModel
from typing import List
class OrderItem(BaseModel):
name: str
quantity: int
price: float
class OrderResponse(BaseModel):
id: str
client_name: str
client_phone: str
ttn: str
cod_amount: float
fiscal_status: str
items: List[OrderItem] = []