Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

NewBaseNotification

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 NewNotificationWebhook

Example

from talon_one.models.new_base_notification import NewBaseNotification

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

# convert the object into a dict
new_base_notification_dict = new_base_notification_instance.to_dict()
# create an instance of NewBaseNotification from a dict
new_base_notification_from_dict = NewBaseNotification.from_dict(new_base_notification_dict)

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