docs/CampaignPrioritiesChangedNotification.md in talon_one-2.5.1 vs docs/CampaignPrioritiesChangedNotification.md in talon_one-3.0.0
- old
+ new
@@ -2,19 +2,19 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**application** | [**Application**](Application.md) | |
-**old_priorities** | **Hash<String, Array<Integer>>** | Campaign IDs for each priority. The priority can be one of: ['universal', 'stackable', 'exclusive'] | [optional]
-**priorities** | **Hash<String, Array<Integer>>** | Campaign IDs for each priority. The priority can be one of: ['universal', 'stackable', 'exclusive'] |
+**application_id** | **Integer** | The ID of the Application whose campaigns' priorities changed. |
+**old_priorities** | [**CampaignSet**](CampaignSet.md) | | [optional]
+**priorities** | [**CampaignSet**](CampaignSet.md) | |
## Code Sample
```ruby
require 'TalonOne'
-instance = TalonOne::CampaignPrioritiesChangedNotification.new(application: null,
+instance = TalonOne::CampaignPrioritiesChangedNotification.new(application_id: 78,
old_priorities: null,
priorities: null)
```