You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The type of the event. Can be one of the following: ['campaign_state_changed', 'campaign_ruleset_changed', 'campaign_edited', 'campaign_created', 'campaign_deleted']
The current details of the placeholders in the campaign.
[optional]
Example
fromtalon_one.models.campaign_state_changed_notification_itemimportCampaignStateChangedNotificationItem# TODO update the JSON string belowjson="{}"# create an instance of CampaignStateChangedNotificationItem from a JSON stringcampaign_state_changed_notification_item_instance=CampaignStateChangedNotificationItem.from_json(json)
# print the JSON string representation of the objectprint(CampaignStateChangedNotificationItem.to_json())
# convert the object into a dictcampaign_state_changed_notification_item_dict=campaign_state_changed_notification_item_instance.to_dict()
# create an instance of CampaignStateChangedNotificationItem from a dictcampaign_state_changed_notification_item_from_dict=CampaignStateChangedNotificationItem.from_dict(campaign_state_changed_notification_item_dict)