@@ -213,6 +213,9 @@ void NodeBindings::bind(pybind11::module& m, void* pCallstack){
213213 .def_readwrite (" group" , &Node::Input::group, DOC (dai, Node, Input, group))
214214 .def_readwrite (" name" , &Node::Input::name, DOC (dai, Node, Input, name))
215215 .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))
216219 .def (" setBlocking" , &Node::Input::setBlocking, py::arg (" blocking" ), DOC (dai, Node, Input, setBlocking))
217220 .def (" getBlocking" , &Node::Input::getBlocking, DOC (dai, Node, Input, getBlocking))
218221 .def (" setQueueSize" , &Node::Input::setQueueSize, py::arg (" size" ), DOC (dai, Node, Input, setQueueSize))
0 commit comments