fastlane / models /product.py
Hugo Guarin
Update space
c169262
raw
history blame contribute delete
No virus
221 Bytes
from pydantic import BaseModel
from typing import List, Optional
class Product(BaseModel):
product_id: str
title: str
description: str
price: float
category: str
tags: Optional[List[str]] = None