Ryan Sweet 89db8b12f1 Improving the readme and renaming examples dir (#218)
* Improving the readme and renaming examples dir

* fix ci

* updating name

* nuance the wording
2024-07-15 15:24:31 -07:00

22 lines
319 B
Python

from pydantic import BaseModel
class ArticleCreated(BaseModel):
user_id: str
article: str
class GraphicDesignCreated(BaseModel):
user_id: str
image_uri: str
class AuditText(BaseModel):
user_id: str
text: str
class AuditorAlert(BaseModel):
user_id: str
auditor_alert_message: str