kittycad.models.ok_modeling_cmd_response.export
- class kittycad.models.ok_modeling_cmd_response.export(files=<kittycad.types.Unset object>, type='export')[source][source]
Bases:
object
The response from the Export command. When this is being performed over a websocket, this is sent as binary not JSON. The binary data can be deserialized as bincode into a Vec<ExportFile>.
Method generated by attrs for class export.
- __init__(files=<kittycad.types.Unset object>, type='export')[source]
Method generated by attrs for class export.
Methods
__init__
([files, type])Method generated by attrs for class export.
from_dict
(src_dict)- rtype:
TypeVar
(QX
, bound= export)
to_dict
()Attributes
- class ExportFile(contents=<kittycad.types.Unset object>, name=<kittycad.types.Unset object>)[source]
Bases:
object
A file to be exported to the client.
Method generated by attrs for class ExportFile.
- __annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'contents': typing.Union[kittycad.types.Unset, str], 'name': typing.Union[kittycad.types.Unset, str]}[source]
- __attrs_attrs__ = (Attribute(name='contents', default=<kittycad.types.Unset object>, validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=typing.Union[kittycad.types.Unset, str], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='contents'), Attribute(name='name', default=<kittycad.types.Unset object>, validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=typing.Union[kittycad.types.Unset, str], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='name'), Attribute(name='additional_properties', default=Factory(factory=<class 'dict'>, takes_self=False), validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=False, metadata=mappingproxy({}), type=typing.Dict[str, typing.Any], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='additional_properties'))[source]
- __dict__ = mappingproxy({'__module__': 'kittycad.models.export_file', '__annotations__': {'contents': typing.Union[kittycad.types.Unset, str], 'name': typing.Union[kittycad.types.Unset, str], 'additional_properties': typing.Dict[str, typing.Any]}, '__doc__': 'A file to be exported to the client.', 'to_dict': <function ExportFile.to_dict>, 'from_dict': <classmethod(<function ExportFile.from_dict>)>, 'additional_keys': <property object>, '__getitem__': <function ExportFile.__getitem__>, '__setitem__': <function ExportFile.__setitem__>, '__delitem__': <function ExportFile.__delitem__>, '__contains__': <function ExportFile.__contains__>, '__dict__': <attribute '__dict__' of 'ExportFile' objects>, '__weakref__': <attribute '__weakref__' of 'ExportFile' objects>, '__attrs_attrs__': (Attribute(name='contents', default=<kittycad.types.Unset object>, validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=typing.Union[kittycad.types.Unset, str], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='contents'), Attribute(name='name', default=<kittycad.types.Unset object>, validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=typing.Union[kittycad.types.Unset, str], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='name'), Attribute(name='additional_properties', default=Factory(factory=<class 'dict'>, takes_self=False), validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=False, metadata=mappingproxy({}), type=typing.Dict[str, typing.Any], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='additional_properties')), '__repr__': <function ExportFile.__repr__>, '__eq__': <function ExportFile.__eq__>, '__ne__': <function ExportFile.__ne__>, '__lt__': <function ExportFile.__lt__>, '__le__': <function ExportFile.__le__>, '__gt__': <function ExportFile.__gt__>, '__ge__': <function ExportFile.__ge__>, '__hash__': None, '__init__': <function ExportFile.__init__>, '__match_args__': ('contents', 'name')})[source]
- __annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'files': typing.Union[kittycad.types.Unset, typing.List[kittycad.models.export_file.ExportFile]], 'type': <class 'str'>}[source]
- __attrs_attrs__ = (Attribute(name='files', default=<kittycad.types.Unset object>, validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=typing.Union[kittycad.types.Unset, typing.List[kittycad.models.export_file.ExportFile]], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='files'), Attribute(name='type', default='export', validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=<class 'str'>, converter=None, kw_only=False, inherited=False, on_setattr=None, alias='type'), Attribute(name='additional_properties', default=Factory(factory=<class 'dict'>, takes_self=False), validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=False, metadata=mappingproxy({}), type=typing.Dict[str, typing.Any], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='additional_properties'))[source]
- __dict__ = mappingproxy({'__module__': 'kittycad.models.ok_modeling_cmd_response', '__annotations__': {'files': typing.Union[kittycad.types.Unset, typing.List[kittycad.models.export_file.ExportFile]], 'type': <class 'str'>, 'additional_properties': typing.Dict[str, typing.Any]}, '__doc__': 'The response from the `Export` command. When this is being performed over a websocket, this is sent as binary not JSON. The binary data can be deserialized as `bincode` into a `Vec<ExportFile>`.', 'ExportFile': <class 'kittycad.models.export_file.ExportFile'>, 'to_dict': <function export.to_dict>, 'from_dict': <classmethod(<function export.from_dict>)>, 'additional_keys': <property object>, '__getitem__': <function export.__getitem__>, '__setitem__': <function export.__setitem__>, '__delitem__': <function export.__delitem__>, '__contains__': <function export.__contains__>, '__dict__': <attribute '__dict__' of 'export' objects>, '__weakref__': <attribute '__weakref__' of 'export' objects>, '__attrs_attrs__': (Attribute(name='files', default=<kittycad.types.Unset object>, validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=typing.Union[kittycad.types.Unset, typing.List[kittycad.models.export_file.ExportFile]], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='files'), Attribute(name='type', default='export', validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=True, metadata=mappingproxy({}), type=<class 'str'>, converter=None, kw_only=False, inherited=False, on_setattr=None, alias='type'), Attribute(name='additional_properties', default=Factory(factory=<class 'dict'>, takes_self=False), validator=None, repr=True, eq=True, eq_key=None, order=True, order_key=None, hash=None, init=False, metadata=mappingproxy({}), type=typing.Dict[str, typing.Any], converter=None, kw_only=False, inherited=False, on_setattr=None, alias='additional_properties')), '__repr__': <function export.__repr__>, '__eq__': <function export.__eq__>, '__ne__': <function export.__ne__>, '__lt__': <function export.__lt__>, '__le__': <function export.__le__>, '__gt__': <function export.__gt__>, '__ge__': <function export.__ge__>, '__hash__': None, '__init__': <function export.__init__>, '__match_args__': ('files', 'type')})[source]