2023-07-07 19:22:51 -07:00
from typing import Any , Dict , List , Type , TypeVar , Union
import attr
2023-08-30 15:59:51 -07:00
from . . models . fbx_storage import FbxStorage
from . . models . gltf_presentation import GltfPresentation
from . . models . gltf_storage import GltfStorage
from . . models . ply_storage import PlyStorage
from . . models . stl_storage import StlStorage
2023-07-07 19:22:51 -07:00
from . . models . system import System
from . . types import UNSET , Unset
2023-09-06 11:27:00 -07:00
RQ = TypeVar ( " RQ " , bound = " fbx " )
2023-08-30 15:59:51 -07:00
@attr.s ( auto_attribs = True )
class fbx :
""" Autodesk Filmbox (FBX) format. """ # noqa: E501
storage : Union [ Unset , FbxStorage ] = UNSET
type : str = " fbx "
additional_properties : Dict [ str , Any ] = attr . ib ( init = False , factory = dict )
def to_dict ( self ) - > Dict [ str , Any ] :
if not isinstance ( self . storage , Unset ) :
storage = self . storage
type = self . type
field_dict : Dict [ str , Any ] = { }
field_dict . update ( self . additional_properties )
field_dict . update ( { } )
if storage is not UNSET :
field_dict [ " storage " ] = storage
field_dict [ " type " ] = type
return field_dict
@classmethod
2023-09-06 11:27:00 -07:00
def from_dict ( cls : Type [ RQ ] , src_dict : Dict [ str , Any ] ) - > RQ :
2023-08-30 15:59:51 -07:00
d = src_dict . copy ( )
_storage = d . pop ( " storage " , UNSET )
storage : Union [ Unset , FbxStorage ]
if isinstance ( _storage , Unset ) :
storage = UNSET
else :
storage = _storage # type: ignore[arg-type]
type = d . pop ( " type " , UNSET )
fbx = cls (
storage = storage ,
type = type ,
)
fbx . additional_properties = d
return fbx
@property
def additional_keys ( self ) - > List [ str ] :
return list ( self . additional_properties . keys ( ) )
def __getitem__ ( self , key : str ) - > Any :
return self . additional_properties [ key ]
def __setitem__ ( self , key : str , value : Any ) - > None :
self . additional_properties [ key ] = value
def __delitem__ ( self , key : str ) - > None :
del self . additional_properties [ key ]
def __contains__ ( self , key : str ) - > bool :
return key in self . additional_properties
2023-09-06 11:27:00 -07:00
ZL = TypeVar ( " ZL " , bound = " gltf " )
2023-07-07 19:22:51 -07:00
@attr.s ( auto_attribs = True )
2023-08-16 16:31:50 -07:00
class gltf :
2023-07-07 19:22:51 -07:00
""" glTF 2.0. We refer to this as glTF since that is how our customers refer to it, although by default it will be in binary format and thus technically (glb). If you prefer ascii output, you can set that option for the export. """ # noqa: E501
2023-08-30 15:59:51 -07:00
presentation : Union [ Unset , GltfPresentation ] = UNSET
storage : Union [ Unset , GltfStorage ] = UNSET
2023-08-16 16:31:50 -07:00
type : str = " gltf "
2023-07-07 19:22:51 -07:00
additional_properties : Dict [ str , Any ] = attr . ib ( init = False , factory = dict )
def to_dict ( self ) - > Dict [ str , Any ] :
2023-08-30 15:59:51 -07:00
if not isinstance ( self . presentation , Unset ) :
presentation = self . presentation
2023-07-07 19:22:51 -07:00
if not isinstance ( self . storage , Unset ) :
storage = self . storage
type = self . type
field_dict : Dict [ str , Any ] = { }
field_dict . update ( self . additional_properties )
field_dict . update ( { } )
2023-08-30 15:59:51 -07:00
if presentation is not UNSET :
field_dict [ " presentation " ] = presentation
2023-07-07 19:22:51 -07:00
if storage is not UNSET :
field_dict [ " storage " ] = storage
2023-08-16 16:31:50 -07:00
field_dict [ " type " ] = type
2023-07-07 19:22:51 -07:00
return field_dict
@classmethod
2023-09-06 11:27:00 -07:00
def from_dict ( cls : Type [ ZL ] , src_dict : Dict [ str , Any ] ) - > ZL :
2023-07-07 19:22:51 -07:00
d = src_dict . copy ( )
2023-08-30 15:59:51 -07:00
_presentation = d . pop ( " presentation " , UNSET )
presentation : Union [ Unset , GltfPresentation ]
if isinstance ( _presentation , Unset ) :
presentation = UNSET
else :
presentation = _presentation # type: ignore[arg-type]
2023-07-07 19:22:51 -07:00
_storage = d . pop ( " storage " , UNSET )
2023-08-30 15:59:51 -07:00
storage : Union [ Unset , GltfStorage ]
2023-07-07 19:22:51 -07:00
if isinstance ( _storage , Unset ) :
storage = UNSET
else :
storage = _storage # type: ignore[arg-type]
type = d . pop ( " type " , UNSET )
gltf = cls (
2023-08-30 15:59:51 -07:00
presentation = presentation ,
2023-07-07 19:22:51 -07:00
storage = storage ,
type = type ,
)
gltf . additional_properties = d
return gltf
@property
def additional_keys ( self ) - > List [ str ] :
return list ( self . additional_properties . keys ( ) )
def __getitem__ ( self , key : str ) - > Any :
return self . additional_properties [ key ]
def __setitem__ ( self , key : str , value : Any ) - > None :
self . additional_properties [ key ] = value
def __delitem__ ( self , key : str ) - > None :
del self . additional_properties [ key ]
def __contains__ ( self , key : str ) - > bool :
return key in self . additional_properties
2023-09-06 11:27:00 -07:00
CM = TypeVar ( " CM " , bound = " obj " )
2023-07-07 19:22:51 -07:00
@attr.s ( auto_attribs = True )
2023-08-16 16:31:50 -07:00
class obj :
2023-07-07 19:22:51 -07:00
""" Wavefront OBJ format. """ # noqa: E501
coords : Union [ Unset , System ] = UNSET
2023-08-16 16:31:50 -07:00
type : str = " obj "
2023-07-07 19:22:51 -07:00
additional_properties : Dict [ str , Any ] = attr . ib ( init = False , factory = dict )
def to_dict ( self ) - > Dict [ str , Any ] :
if not isinstance ( self . coords , Unset ) :
coords = self . coords
type = self . type
field_dict : Dict [ str , Any ] = { }
field_dict . update ( self . additional_properties )
field_dict . update ( { } )
if coords is not UNSET :
field_dict [ " coords " ] = coords
2023-08-16 16:31:50 -07:00
field_dict [ " type " ] = type
2023-07-07 19:22:51 -07:00
return field_dict
@classmethod
2023-09-06 11:27:00 -07:00
def from_dict ( cls : Type [ CM ] , src_dict : Dict [ str , Any ] ) - > CM :
2023-07-07 19:22:51 -07:00
d = src_dict . copy ( )
_coords = d . pop ( " coords " , UNSET )
coords : Union [ Unset , System ]
if isinstance ( _coords , Unset ) :
coords = UNSET
else :
2023-07-31 12:50:30 -07:00
coords = _coords # type: ignore[arg-type]
2023-07-07 19:22:51 -07:00
type = d . pop ( " type " , UNSET )
obj = cls (
coords = coords ,
type = type ,
)
obj . additional_properties = d
return obj
@property
def additional_keys ( self ) - > List [ str ] :
return list ( self . additional_properties . keys ( ) )
def __getitem__ ( self , key : str ) - > Any :
return self . additional_properties [ key ]
def __setitem__ ( self , key : str , value : Any ) - > None :
self . additional_properties [ key ] = value
def __delitem__ ( self , key : str ) - > None :
del self . additional_properties [ key ]
def __contains__ ( self , key : str ) - > bool :
return key in self . additional_properties
2023-09-06 11:27:00 -07:00
OS = TypeVar ( " OS " , bound = " ply " )
2023-07-31 12:50:30 -07:00
@attr.s ( auto_attribs = True )
2023-08-16 16:31:50 -07:00
class ply :
2023-07-31 12:50:30 -07:00
""" The PLY Polygon File Format. """ # noqa: E501
coords : Union [ Unset , System ] = UNSET
2023-08-30 15:59:51 -07:00
storage : Union [ Unset , PlyStorage ] = UNSET
2023-08-16 16:31:50 -07:00
type : str = " ply "
2023-07-31 12:50:30 -07:00
additional_properties : Dict [ str , Any ] = attr . ib ( init = False , factory = dict )
def to_dict ( self ) - > Dict [ str , Any ] :
if not isinstance ( self . coords , Unset ) :
coords = self . coords
if not isinstance ( self . storage , Unset ) :
storage = self . storage
type = self . type
field_dict : Dict [ str , Any ] = { }
field_dict . update ( self . additional_properties )
field_dict . update ( { } )
if coords is not UNSET :
field_dict [ " coords " ] = coords
if storage is not UNSET :
field_dict [ " storage " ] = storage
2023-08-16 16:31:50 -07:00
field_dict [ " type " ] = type
2023-07-31 12:50:30 -07:00
return field_dict
@classmethod
2023-09-06 11:27:00 -07:00
def from_dict ( cls : Type [ OS ] , src_dict : Dict [ str , Any ] ) - > OS :
2023-07-31 12:50:30 -07:00
d = src_dict . copy ( )
_coords = d . pop ( " coords " , UNSET )
coords : Union [ Unset , System ]
if isinstance ( _coords , Unset ) :
coords = UNSET
else :
coords = _coords # type: ignore[arg-type]
_storage = d . pop ( " storage " , UNSET )
2023-08-30 15:59:51 -07:00
storage : Union [ Unset , PlyStorage ]
2023-07-31 12:50:30 -07:00
if isinstance ( _storage , Unset ) :
storage = UNSET
else :
storage = _storage # type: ignore[arg-type]
type = d . pop ( " type " , UNSET )
ply = cls (
coords = coords ,
storage = storage ,
type = type ,
)
ply . additional_properties = d
return ply
@property
def additional_keys ( self ) - > List [ str ] :
return list ( self . additional_properties . keys ( ) )
def __getitem__ ( self , key : str ) - > Any :
return self . additional_properties [ key ]
def __setitem__ ( self , key : str , value : Any ) - > None :
self . additional_properties [ key ] = value
def __delitem__ ( self , key : str ) - > None :
del self . additional_properties [ key ]
def __contains__ ( self , key : str ) - > bool :
return key in self . additional_properties
2023-09-06 11:27:00 -07:00
WP = TypeVar ( " WP " , bound = " step " )
2023-07-07 19:22:51 -07:00
@attr.s ( auto_attribs = True )
2023-08-16 16:31:50 -07:00
class step :
2023-07-07 19:22:51 -07:00
""" ISO 10303-21 (STEP) format. """ # noqa: E501
coords : Union [ Unset , System ] = UNSET
2023-08-16 16:31:50 -07:00
type : str = " step "
2023-07-07 19:22:51 -07:00
additional_properties : Dict [ str , Any ] = attr . ib ( init = False , factory = dict )
def to_dict ( self ) - > Dict [ str , Any ] :
if not isinstance ( self . coords , Unset ) :
coords = self . coords
type = self . type
field_dict : Dict [ str , Any ] = { }
field_dict . update ( self . additional_properties )
field_dict . update ( { } )
if coords is not UNSET :
field_dict [ " coords " ] = coords
2023-08-16 16:31:50 -07:00
field_dict [ " type " ] = type
2023-07-07 19:22:51 -07:00
return field_dict
@classmethod
2023-09-06 11:27:00 -07:00
def from_dict ( cls : Type [ WP ] , src_dict : Dict [ str , Any ] ) - > WP :
2023-07-07 19:22:51 -07:00
d = src_dict . copy ( )
_coords = d . pop ( " coords " , UNSET )
coords : Union [ Unset , System ]
if isinstance ( _coords , Unset ) :
coords = UNSET
else :
2023-07-31 12:50:30 -07:00
coords = _coords # type: ignore[arg-type]
2023-07-07 19:22:51 -07:00
type = d . pop ( " type " , UNSET )
step = cls (
coords = coords ,
type = type ,
)
step . additional_properties = d
return step
@property
def additional_keys ( self ) - > List [ str ] :
return list ( self . additional_properties . keys ( ) )
def __getitem__ ( self , key : str ) - > Any :
return self . additional_properties [ key ]
def __setitem__ ( self , key : str , value : Any ) - > None :
self . additional_properties [ key ] = value
def __delitem__ ( self , key : str ) - > None :
del self . additional_properties [ key ]
def __contains__ ( self , key : str ) - > bool :
return key in self . additional_properties
2023-09-06 11:27:00 -07:00
XO = TypeVar ( " XO " , bound = " stl " )
2023-07-07 19:22:51 -07:00
@attr.s ( auto_attribs = True )
2023-08-16 16:31:50 -07:00
class stl :
2023-07-07 19:22:51 -07:00
""" *ST**ereo**L**ithography format. """ # noqa: E501
coords : Union [ Unset , System ] = UNSET
2023-08-30 15:59:51 -07:00
storage : Union [ Unset , StlStorage ] = UNSET
2023-08-16 16:31:50 -07:00
type : str = " stl "
2023-07-07 19:22:51 -07:00
additional_properties : Dict [ str , Any ] = attr . ib ( init = False , factory = dict )
def to_dict ( self ) - > Dict [ str , Any ] :
if not isinstance ( self . coords , Unset ) :
coords = self . coords
if not isinstance ( self . storage , Unset ) :
storage = self . storage
type = self . type
field_dict : Dict [ str , Any ] = { }
field_dict . update ( self . additional_properties )
field_dict . update ( { } )
if coords is not UNSET :
field_dict [ " coords " ] = coords
if storage is not UNSET :
field_dict [ " storage " ] = storage
2023-08-16 16:31:50 -07:00
field_dict [ " type " ] = type
2023-07-07 19:22:51 -07:00
return field_dict
@classmethod
2023-09-06 11:27:00 -07:00
def from_dict ( cls : Type [ XO ] , src_dict : Dict [ str , Any ] ) - > XO :
2023-07-07 19:22:51 -07:00
d = src_dict . copy ( )
_coords = d . pop ( " coords " , UNSET )
coords : Union [ Unset , System ]
if isinstance ( _coords , Unset ) :
coords = UNSET
else :
2023-07-31 12:50:30 -07:00
coords = _coords # type: ignore[arg-type]
2023-07-07 19:22:51 -07:00
_storage = d . pop ( " storage " , UNSET )
2023-08-30 15:59:51 -07:00
storage : Union [ Unset , StlStorage ]
2023-07-07 19:22:51 -07:00
if isinstance ( _storage , Unset ) :
storage = UNSET
else :
storage = _storage # type: ignore[arg-type]
type = d . pop ( " type " , UNSET )
stl = cls (
coords = coords ,
storage = storage ,
type = type ,
)
stl . additional_properties = d
return stl
@property
def additional_keys ( self ) - > List [ str ] :
return list ( self . additional_properties . keys ( ) )
def __getitem__ ( self , key : str ) - > Any :
return self . additional_properties [ key ]
def __setitem__ ( self , key : str , value : Any ) - > None :
self . additional_properties [ key ] = value
def __delitem__ ( self , key : str ) - > None :
del self . additional_properties [ key ]
def __contains__ ( self , key : str ) - > bool :
return key in self . additional_properties
2023-08-30 15:59:51 -07:00
OutputFormat = Union [ fbx , gltf , obj , ply , step , stl ]