Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

NotificationHandlerGet200Response

Properties

Name Type Description Notes
data List[NotificationHandler] [optional]
meta MonitorsGet200ResponseMeta [optional]
links MonitorsGet200ResponseLinks [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]