| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| type | str | [optional] | |
| name | str | [optional] | |
| settings | NotificationHandlerSettings | [optional] | |
| is_enabled | bool | [optional] | |
| last_datetime | str | [optional] | |
| datetime | datetime | [optional] |
from openapi_client.models.notification_handler import NotificationHandler
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationHandler from a JSON string
notification_handler_instance = NotificationHandler.from_json(json)
# print the JSON string representation of the object
print(NotificationHandler.to_json())
# convert the object into a dict
notification_handler_dict = notification_handler_instance.to_dict()
# create an instance of NotificationHandler from a dict
notification_handler_from_dict = NotificationHandler.from_dict(notification_handler_dict)