Last active
September 23, 2021 19:20
-
-
Save bverhoeve/50bc234229d344b5448e7b6c48b14f29 to your computer and use it in GitHub Desktop.
Pipes & Filters models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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