{@link NotifierDescriptor NotifierDescriptor} is a custom extension that defines a notifier.
It describes the notifier's name, description, and the extension name of the notifier to let the user know what the notifier is and what it can do in the UI and also let the NotificationCenter know how to load the notifier and prepare the notifier's settings.
| Name | Type | Description | Notes |
|---|---|---|---|
| api_version | str | ||
| kind | str | ||
| metadata | Metadata | ||
| spec | NotifierDescriptorSpec | [optional] |
from halo_client.models.notifier_descriptor import NotifierDescriptor
# TODO update the JSON string below
json = "{}"
# create an instance of NotifierDescriptor from a JSON string
notifier_descriptor_instance = NotifierDescriptor.from_json(json)
# print the JSON string representation of the object
print(NotifierDescriptor.to_json())
# convert the object into a dict
notifier_descriptor_dict = notifier_descriptor_instance.to_dict()
# create an instance of NotifierDescriptor from a dict
notifier_descriptor_from_dict = NotifierDescriptor.from_dict(notifier_descriptor_dict)