Skip to content

Instantly share code, notes, and snippets.

@ashish-mj
Created March 28, 2025 10:31
Show Gist options
  • Save ashish-mj/53b9ef174655db199a6fac91f4f0d857 to your computer and use it in GitHub Desktop.
Save ashish-mj/53b9ef174655db199a6fac91f4f0d857 to your computer and use it in GitHub Desktop.
from dataclasses import dataclass
from datetime import datetime
@dataclass
class Product:
id: str
description: str
price: float
status: str
created_at: datetime
type: str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment