Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

File metadata and controls

29 lines (20 loc) · 1.24 KB

CampaignNotificationItemBase

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']

Example

from talon_one.models.campaign_notification_item_base import CampaignNotificationItemBase

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

# convert the object into a dict
campaign_notification_item_base_dict = campaign_notification_item_base_instance.to_dict()
# create an instance of CampaignNotificationItemBase from a dict
campaign_notification_item_base_from_dict = CampaignNotificationItemBase.from_dict(campaign_notification_item_base_dict)

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