10 lines
179 B
Python
10 lines
179 B
Python
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Solid3dGetOppositeEdge(BaseModel):
|
|
"""The response from the `Solid3dGetOppositeEdge` command."""
|
|
|
|
edge: UUID
|