I have generated the latest API!

This commit is contained in:
github-actions[bot]
2022-09-29 21:52:21 +00:00
parent 936e4adbf1
commit 34f46d5022
33 changed files with 494 additions and 108 deletions

View File

@ -0,0 +1,15 @@
from enum import Enum
class FileImportFormat(str, Enum):
DAE = 'dae'
DXF = 'dxf'
FBX = 'fbx'
OBJ = 'obj'
OBJ_NOMTL = 'obj_nomtl'
STEP = 'step'
STL = 'stl'
SVG = 'svg'
def __str__(self) -> str:
return str(self.value)