fastlane / models /order.py
Hugo Guarin
Update space
c169262
raw
history blame
No virus
134 Bytes
from pydantic import BaseModel
class Order(BaseModel):
order_id: str
product_ids: list
quantities: list
status: str