mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
9 lines
171 B
Python
9 lines
171 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class PashubToAraTriggerRequest(BaseModel):
|
|
pashub_job_id: str
|
|
|
|
sharepoint_url: Optional[str] = None
|