13 lines
278 B
Python
13 lines
278 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class Solid3dGetPrevAdjacentEdge(BaseModel):
|
|
"""The response from the `Solid3dGetPrevAdjacentEdge` command."""
|
|
|
|
edge: Optional[str] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|