I am new to scripting inkscape extension. I have so far covered the basics and created a working hello world example. I cant find a good resource/documentation where i can find full list of available functions that i can use from python in extensions. So i am posting here for your help. If you guys can point me to such resource it would be great as well.
I am trying to build an extension to hide/unhide specific layers(layers have specific names) from my extension. I have no clue about how to proceed. Are there any function like-
# Get access to main SVG document element and get its dimensions.
svg = self.document.getroot()
#get layer by name and hide it ??
svg.getLayerByName("Name_of_layer").hide() <<< ????

Thanks in advance. I really appreciate your time to read this out.