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