forked from webflow/webflow-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent_node.py
More file actions
43 lines (35 loc) · 1.34 KB
/
Copy pathcomponent_node.py
File metadata and controls
43 lines (35 loc) · 1.34 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
# This file was auto-generated by Fern from our API Definition.
from ..core.pydantic_utilities import UniversalBaseModel
import typing
import pydantic
import typing_extensions
from ..core.serialization import FieldMetadata
from .component_property import ComponentProperty
from ..core.pydantic_utilities import IS_PYDANTIC_V2
class ComponentNode(UniversalBaseModel):
"""
Represents a component instance within the DOM. It contains details about the component instance, such as its type and properties.
"""
id: typing.Optional[str] = pydantic.Field(default=None)
"""
Node UUID
"""
component_id: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="componentId")] = (
pydantic.Field(default=None)
)
"""
Component ID
"""
property_overrides: typing_extensions.Annotated[
typing.Optional[typing.List[ComponentProperty]], FieldMetadata(alias="propertyOverrides")
] = pydantic.Field(default=None)
"""
List of component properties with overrides for a component instance.
"""
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