forked from webflow/webflow-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent.py
More file actions
46 lines (36 loc) · 1.22 KB
/
Copy pathcomponent.py
File metadata and controls
46 lines (36 loc) · 1.22 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
44
45
46
# This file was auto-generated by Fern from our API Definition.
from ..core.pydantic_utilities import UniversalBaseModel
import pydantic
import typing
from ..core.pydantic_utilities import IS_PYDANTIC_V2
class Component(UniversalBaseModel):
"""
The Component object
"""
id: str = pydantic.Field()
"""
Unique identifier for the Component
"""
name: typing.Optional[str] = pydantic.Field(default=None)
"""
Component Name
"""
group: typing.Optional[str] = pydantic.Field(default=None)
"""
The group that the component belongs to
"""
description: typing.Optional[str] = pydantic.Field(default=None)
"""
Component Description
"""
readonly: typing.Optional[bool] = pydantic.Field(default=None)
"""
Indicates whether the component is read-only. Components that cannot be updated within this Site are set to readonly. Workspace Libraries are a good example.
"""
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