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 required size of each batch of data. This value applies only when `batchingEnabled` is `true`.
[optional] [default to 5]
Example
fromtalon_one.models.campaign_notification_policyimportCampaignNotificationPolicy# TODO update the JSON string belowjson="{}"# create an instance of CampaignNotificationPolicy from a JSON stringcampaign_notification_policy_instance=CampaignNotificationPolicy.from_json(json)
# print the JSON string representation of the objectprint(CampaignNotificationPolicy.to_json())
# convert the object into a dictcampaign_notification_policy_dict=campaign_notification_policy_instance.to_dict()
# create an instance of CampaignNotificationPolicy from a dictcampaign_notification_policy_from_dict=CampaignNotificationPolicy.from_dict(campaign_notification_policy_dict)