Skip to content

Instantly share code, notes, and snippets.

@bverhoeve
Last active September 23, 2021 19:20
Show Gist options
  • Save bverhoeve/50bc234229d344b5448e7b6c48b14f29 to your computer and use it in GitHub Desktop.
Save bverhoeve/50bc234229d344b5448e7b6c48b14f29 to your computer and use it in GitHub Desktop.
Pipes & Filters models
@dataclass
class Item:
description: str
barcode: str
@dataclass
class Customer:
uid: UUID
name: str
address: str
email_address: str
country: str
@dataclass
class Order:
uid: UUID
items: list[Item]
customer: Customer
currency: str
credit_card: str
order_timestamp: datetime
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment