Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.23 KB

File metadata and controls

35 lines (26 loc) · 1.23 KB

NotificationHandler

Properties

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]

Example

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)

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