mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
9 lines
202 B
Python
9 lines
202 B
Python
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class AuditGeneratorTriggerRequest(BaseModel):
|
|
model_config = ConfigDict(extra="ignore")
|
|
|
|
task_id: str
|
|
sub_task_id: str
|
|
hubspot_deal_id: str
|