summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/pluginmanager.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 32d410ea..64d58e69 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -222,6 +222,11 @@ class Extension:
return core.BNPluginGetPackageUrl(self.handle)
@property
+ def is_paid(self) -> bool:
+ """Boolean True if this plugin requires payment, False otherwise"""
+ return core.BNPluginGetIsPaid(self.handle)
+
+ @property
def author_url(self) -> Optional[str]:
"""String URL of the plugin author's url"""
return core.BNPluginGetAuthorUrl(self.handle)