12 lines
233 B
Python
12 lines
233 B
Python
from typing import Optional
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class Solid3dGetPrevAdjacentEdge(BaseModel):
|
|
"""The response from the `Solid3dGetPrevAdjacentEdge` command."""
|
|
|
|
edge: Optional[UUID] = None
|