"""Smart Folders=============Methods described in this section relate to the smart folders API and can be accessed at``TenableASM.smart_folders``... rst-class:: hide-signature.. autoclass:: SmartFoldersAPI :members:"""fromtypingimportDict,List,Anyfromtenable.base.endpointimportAPIEndpoint
[docs]deflist(self)->List[Dict[str,Any]]:""" Returns the list of smart folders from ASM. Example: >>> folders = asm.smartfolders.list() """returnself._get()