Sha256: a78d8dcb084b7b2bcc98f7d1308ee511b75b9f6f08e08d62ef9a2765ca08a777

Contents?: true

Size: 1.6 KB

Versions: 6

Compression:

Stored size: 1.6 KB

Contents

# TalonOne::Ruleset

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Integer** | Unique ID for this entity. | 
**created** | **DateTime** | The exact moment this entity was created. | 
**campaign_id** | **Integer** | The ID of the campaign that owns this entity. | 
**user_id** | **Integer** | The ID of the account that owns this entity. | 
**rules** | [**Array<Rule>**](Rule.md) | Set of rules to apply. | 
**bindings** | [**Array<Binding>**](Binding.md) | An array that provides objects with variable names (name) and talang expressions to whose result they are bound (expression) during rule evaluation. The order of the evaluation is decided by the position in the array. | 
**rb_version** | **String** | A string indicating which version of the rulebuilder was used to create this ruleset. | [optional] 
**activate** | **Boolean** | A boolean indicating whether this newly created ruleset should also be activated for the campaign owns it | [optional] 
**activated_at** | **DateTime** | Timestamp indicating when this Ruleset was activated. | [optional] 

## Code Sample

```ruby
require 'TalonOne'

instance = TalonOne::Ruleset.new(id: null,
                                 created: null,
                                 campaign_id: null,
                                 user_id: null,
                                 rules: null,
                                 bindings: null,
                                 rb_version: null,
                                 activate: null,
                                 activated_at: null)
```


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
talon_one-2.4.0 docs/Ruleset.md
talon_one-2.3.0 docs/Ruleset.md
talon_one-2.2.0 docs/Ruleset.md
talon_one-2.1.1 docs/Ruleset.md
talon_one-2.1.0 docs/Ruleset.md
talon_one-2.0.0 docs/Ruleset.md