mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
15 lines
254 B
Python
15 lines
254 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class WebhookConfigurationExtra(BaseModel):
|
|
class Python(BaseModel):
|
|
source: str
|
|
|
|
python: Python
|
|
|
|
|
|
class WebhookConfiguration(BaseModel):
|
|
path: str
|
|
method: str
|
|
extra: WebhookConfigurationExtra
|