8 lines
195 B
Python
8 lines
195 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class EntityMakeHelix(BaseModel):
|
||
|
"""The response from the `EntityMakeHelix` endpoint."""
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|