Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

File metadata and controls

31 lines (22 loc) · 1.3 KB

CampaignNotificationPolicy

Properties

Name Type Description Notes
name str Notification name.
batching_enabled bool Indicates whether batching is activated. [optional] [default to True]
batch_size int The required size of each batch of data. This value applies only when `batchingEnabled` is `true`. [optional] [default to 5]

Example

from talon_one.models.campaign_notification_policy import CampaignNotificationPolicy

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

# convert the object into a dict
campaign_notification_policy_dict = campaign_notification_policy_instance.to_dict()
# create an instance of CampaignNotificationPolicy from a dict
campaign_notification_policy_from_dict = CampaignNotificationPolicy.from_dict(campaign_notification_policy_dict)

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