-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomment.py
More file actions
31 lines (24 loc) · 1001 Bytes
/
Copy pathcomment.py
File metadata and controls
31 lines (24 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
import typing_extensions
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
from ..core.serialization import FieldMetadata
from .comment_payload import CommentPayload
class Comment(UniversalBaseModel):
"""
The Webhook payload for when a comment thread or reply is made on a Site
"""
trigger_type: typing_extensions.Annotated[
typing.Optional[str],
FieldMetadata(alias="triggerType"),
pydantic.Field(alias="triggerType", description="The type of event that triggered the request"),
] = None
payload: typing.Optional[CommentPayload] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow