Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.74 KB

File metadata and controls

33 lines (24 loc) · 1.74 KB

CampaignEditedNotificationItem

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.
old_campaign Campaign The campaign before the change.
ruleset Ruleset The current ruleset. [optional]
placeholders List[PlaceholderDetails] The current details of the placeholders in the campaign. [optional]

Example

from talon_one.models.campaign_edited_notification_item import CampaignEditedNotificationItem

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

# convert the object into a dict
campaign_edited_notification_item_dict = campaign_edited_notification_item_instance.to_dict()
# create an instance of CampaignEditedNotificationItem from a dict
campaign_edited_notification_item_from_dict = CampaignEditedNotificationItem.from_dict(campaign_edited_notification_item_dict)

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