* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
12 lines
321 B
Python
12 lines
321 B
Python
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.solid_info import SolidInfo
|
|
|
|
|
|
class Solid3dGetInfo(BaseModel):
|
|
"""Extrusion face info struct (useful for maintaining mappings between source path segment ids and extrusion faces)"""
|
|
|
|
info: SolidInfo
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|