docs/UpdateCampaignTemplate.md in talon_one-3.0.2 vs docs/UpdateCampaignTemplate.md in talon_one-5.0.0
- old
+ new
@@ -18,10 +18,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. | [optional] [default to 'advanced']
## Code Sample
```ruby
require 'TalonOne'
@@ -39,9 +40,10 @@
referral_settings: null,
limits: null,
template_params: null,
applications_ids: [1, 2, 3],
campaign_collections: null,
- default_campaign_group_id: 42)
+ default_campaign_group_id: 42,
+ campaign_type: advanced)
```