summaryrefslogtreecommitdiffhomepage
path: root/libs/apprise/AppriseAsset.pyi
diff options
context:
space:
mode:
Diffstat (limited to 'libs/apprise/AppriseAsset.pyi')
-rw-r--r--libs/apprise/AppriseAsset.pyi34
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/apprise/AppriseAsset.pyi b/libs/apprise/AppriseAsset.pyi
new file mode 100644
index 000000000..08303341b
--- /dev/null
+++ b/libs/apprise/AppriseAsset.pyi
@@ -0,0 +1,34 @@
+from typing import Dict, Optional
+
+from . import NotifyFormat, NotifyType
+
+class AppriseAsset:
+ app_id: str
+ app_desc: str
+ app_url: str
+ html_notify_map: Dict[NotifyType, str]
+ default_html_color: str
+ default_extension: str
+ theme: Optional[str]
+ image_url_mask: str
+ image_url_logo: str
+ image_path_mask: Optional[str]
+ body_format: Optional[NotifyFormat]
+ async_mode: bool
+ interpret_escapes: bool
+ def __init__(
+ self,
+ app_id: str = ...,
+ app_desc: str = ...,
+ app_url: str = ...,
+ html_notify_map: Dict[NotifyType, str] = ...,
+ default_html_color: str = ...,
+ default_extension: str = ...,
+ theme: Optional[str] = ...,
+ image_url_mask: str = ...,
+ image_url_logo: str = ...,
+ image_path_mask: Optional[str] = ...,
+ body_format: Optional[NotifyFormat] = ...,
+ async_mode: bool = ...,
+ interpret_escapes: bool = ...
+ ) -> None: ... \ No newline at end of file