docs/CampaignTemplate.md in talon_one-3.0.2 vs docs/CampaignTemplate.md in talon_one-5.0.0
- old
+ new
@@ -22,10 +22,11 @@
**limits** | [**Array<TemplateLimitConfig>**](TemplateLimitConfig.md) | The set of limits that operate for this campaign template. | [optional]
**template_params** | [**Array<CampaignTemplateParams>**](CampaignTemplateParams.md) | Fields which can be used to replace values in a rule. | [optional]
**applications_ids** | **Array<Integer>** | A list of IDs of the Applications that are subscribed to this campaign template. |
**campaign_collections** | [**Array<CampaignTemplateCollection>**](CampaignTemplateCollection.md) | The campaign collections from the blueprint campaign for the template. | [optional]
**default_campaign_group_id** | **Integer** | The default campaign group ID. | [optional]
+**campaign_type** | **String** | The campaign type. Possible type values: - `cartItem`: Type of campaign that can apply effects only to cart items. - `advanced`: Type of campaign that can apply effects to customer sessions and cart items. | [default to 'advanced']
**updated** | **DateTime** | Timestamp of the most recent update to the campaign template or any of its elements. | [optional]
**updated_by** | **String** | Name of the user who last updated this campaign template, if available. | [optional]
**valid_application_ids** | **Array<Integer>** | The IDs of the Applications that are related to this entity. |
## Code Sample
@@ -51,9 +52,10 @@
limits: null,
template_params: null,
applications_ids: null,
campaign_collections: null,
default_campaign_group_id: 42,
+ campaign_type: advanced,
updated: 2022-08-24T14:15:22Z,
updated_by: Jane Doe,
valid_application_ids: [1, 2, 3])
```