Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.43 KB

File metadata and controls

31 lines (22 loc) · 1.43 KB

CampaignDeletedNotificationItem

Properties

Name Type Description Notes
event str The type of the event. Can be one of the following: ['campaign_state_changed', 'campaign_ruleset_changed', 'campaign_edited', 'campaign_created', 'campaign_deleted']
campaign Campaign The campaign whose state changed.
deleted_at datetime Time when the campaign was deleted.

Example

from talon_one.models.campaign_deleted_notification_item import CampaignDeletedNotificationItem

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

# convert the object into a dict
campaign_deleted_notification_item_dict = campaign_deleted_notification_item_instance.to_dict()
# create an instance of CampaignDeletedNotificationItem from a dict
campaign_deleted_notification_item_from_dict = CampaignDeletedNotificationItem.from_dict(campaign_deleted_notification_item_dict)

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