Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

BaseNotification

Properties

Name Type Description Notes
policy object Indicates which notification properties to apply.
enabled bool Indicates whether the notification is activated. [optional] [default to True]
webhook BaseNotificationWebhook
id int Unique ID for this entity.
type str The notification type.

Example

from talon_one.models.base_notification import BaseNotification

# TODO update the JSON string below
json = "{}"
# create an instance of BaseNotification from a JSON string
base_notification_instance = BaseNotification.from_json(json)
# print the JSON string representation of the object
print(BaseNotification.to_json())

# convert the object into a dict
base_notification_dict = base_notification_instance.to_dict()
# create an instance of BaseNotification from a dict
base_notification_from_dict = BaseNotification.from_dict(base_notification_dict)

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