* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
16 lines
326 B
Python
16 lines
326 B
Python
from typing import List
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class FaceEdgeInfo(BaseModel):
|
|
"""Faces and edges id info (most used in identifying geometry in patterned and mirrored objects)."""
|
|
|
|
edges: List[str]
|
|
|
|
faces: List[str]
|
|
|
|
object_id: str
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|