docs/CampaignGroup.md in talon_one-2.5.1 vs docs/CampaignGroup.md in talon_one-3.0.0
- old
+ new
@@ -2,18 +2,18 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**id** | **Integer** | Unique ID for this entity. |
-**created** | **DateTime** | The exact moment this entity was created. |
-**modified** | **DateTime** | The exact moment this entity was last modified. |
+**id** | **Integer** | Internal ID of this entity. |
+**created** | **DateTime** | The time this entity was created. |
+**modified** | **DateTime** | The time this entity was last modified. |
**account_id** | **Integer** | The ID of the account that owns this entity. |
**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]
+**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]
## Code Sample
```ruby
require 'TalonOne'
@@ -21,11 +21,11 @@
instance = TalonOne::CampaignGroup.new(id: 6,
created: 2020-06-10T09:05:27.993483Z,
modified: 2021-09-12T10:12:42Z,
account_id: 3886,
name: null,
- description: null,
- subscribed_applications_ids: null,
- campaign_ids: null)
+ description: My campaign group.,
+ subscribed_applications_ids: [1, 2, 3],
+ campaign_ids: [4, 6, 8])
```