docs/CampaignTemplateParams.md in talon_one-2.5.1 vs docs/CampaignTemplateParams.md in talon_one-3.0.0
- old
+ new
@@ -5,17 +5,19 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of the campaign template parameter. |
**type** | **String** | Defines the type of parameter value. |
**description** | **String** | Explains the meaning of this template parameter and the placeholder value that will define it. It is used on campaign creation from this template. |
+**attribute_id** | **Integer** | ID of the corresponding attribute. | [optional]
## Code Sample
```ruby
require 'TalonOne'
-instance = TalonOne::CampaignTemplateParams.new(name: null,
- type: null,
- description: null)
+instance = TalonOne::CampaignTemplateParams.new(name: discount_value,
+ type: number,
+ description: This is a template parameter of type `number`.,
+ attribute_id: 42)
```