docs/UpdateCampaignGroup.md in talon_one-3.0.2 vs docs/UpdateCampaignGroup.md in talon_one-5.0.0
- old
+ new
@@ -2,21 +2,21 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**name** | **String** | The name of this campaign group. |
-**description** | **String** | A longer description of the campaign group. | [optional]
-**subscribed_applications_ids** | **Array<Integer>** | A list of the IDs of the applications that this campaign group is enabled for. | [optional]
-**campaign_ids** | **Array<Integer>** | A list of the IDs of the campaigns that this campaign group owns. | [optional]
+**name** | **String** | The name of the campaign access group. |
+**description** | **String** | A longer description of the campaign access group. | [optional]
+**subscribed_applications_ids** | **Array<Integer>** | A list of IDs of the Applications that this campaign access group is enabled for. | [optional]
+**campaign_ids** | **Array<Integer>** | A list of IDs of the campaigns that are part of the campaign access group. | [optional]
## Code Sample
```ruby
require 'TalonOne'
-instance = TalonOne::UpdateCampaignGroup.new(name: null,
- description: My campaign group.,
+instance = TalonOne::UpdateCampaignGroup.new(name: Europe access group,
+ description: A group that gives access to all the campaigns for the Europe market.,
subscribed_applications_ids: [1, 2, 3],
campaign_ids: [4, 6, 8])
```