docs/EventV2.md in talon_one-2.5.1 vs docs/EventV2.md in talon_one-3.0.0
- old
+ new
@@ -2,20 +2,22 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**profile_id** | **String** | ID of the customers profile as used within this Talon.One account. **Note:** If the customer does not yet have a known profileId, we recommend you use a guest profileId. | [optional]
-**type** | **String** | A string representing the event. Must not be a reserved event name. |
-**attributes** | [**Object**](.md) | Arbitrary additional JSON data associated with the event. | [optional]
+**profile_id** | **String** | ID of the customer profile set by your integration layer. **Note:** If the customer does not yet have a known `profileId`, we recommend you use a guest `profileId`. | [optional]
+**evaluable_campaign_ids** | **Array<Integer>** | When using the `dry` query parameter, use this property to list the campaign to be evaluated by the Rule Engine. These campaigns will be evaluated, even if they are disabled, allowing you to test specific campaigns before activating them. | [optional]
+**type** | **String** | A string representing the event name. Must not be a reserved event name. You create this value when you [create an attribute](https://docs.talon.one/docs/dev/concepts/events#creating-a-custom-event) of type `event` in the Campaign Manager. |
+**attributes** | [**Object**](.md) | Arbitrary additional JSON properties associated with the event. They must be created in the Campaign Manager before setting them with this property. See [creating custom attributes](https://docs.talon.one/docs/product/account/dev-tools/managing-attributes#creating-custom-attributes). | [optional]
## Code Sample
```ruby
require 'TalonOne'
instance = TalonOne::EventV2.new(profile_id: URNGV8294NV,
- type: email_opened,
+ evaluable_campaign_ids: [10, 12],
+ type: pageViewed,
attributes: {"myAttribute":"myValue"})
```