@@ -213,6 +213,9 @@ void NodeBindings::bind(pybind11::module& m, void* pCallstack){
213
213
.def_readwrite (" group" , &Node::Input::group, DOC (dai, Node, Input, group))
214
214
.def_readwrite (" name" , &Node::Input::name, DOC (dai, Node, Input, name))
215
215
.def_readwrite (" type" , &Node::Input::type, DOC (dai, Node, Input, type))
216
+ .def_readwrite (" possibleDatatypes" , &Node::Input::possibleDatatypes, DOC (dai, Node, Input, possibleDatatypes))
217
+ .def (" getParent" , static_cast <const Node& (Node::Input::*)() const >(&Node::Input::getParent), py::return_value_policy::reference_internal, DOC (dai, Node, Input, getParent))
218
+ .def (" getParent" , static_cast <Node& (Node::Input::*)()>(&Node::Input::getParent), py::return_value_policy::reference_internal, DOC (dai, Node, Input, getParent))
216
219
.def (" setBlocking" , &Node::Input::setBlocking, py::arg (" blocking" ), DOC (dai, Node, Input, setBlocking))
217
220
.def (" getBlocking" , &Node::Input::getBlocking, DOC (dai, Node, Input, getBlocking))
218
221
.def (" setQueueSize" , &Node::Input::setQueueSize, py::arg (" size" ), DOC (dai, Node, Input, setQueueSize))
0 commit comments