| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[NotificationHandler] | [optional] | |
| meta | MonitorsGet200ResponseMeta | [optional] | |
| links | MonitorsGet200ResponseLinks | [optional] |
from openapi_client.models.notification_handler_get200_response import NotificationHandlerGet200Response
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationHandlerGet200Response from a JSON string
notification_handler_get200_response_instance = NotificationHandlerGet200Response.from_json(json)
# print the JSON string representation of the object
print(NotificationHandlerGet200Response.to_json())
# convert the object into a dict
notification_handler_get200_response_dict = notification_handler_get200_response_instance.to_dict()
# create an instance of NotificationHandlerGet200Response from a dict
notification_handler_get200_response_from_dict = NotificationHandlerGet200Response.from_dict(notification_handler_get200_response_dict)