| Name |
Type |
Description |
Notes |
| _id |
String |
The flag rule ID |
[optional] |
| disabled |
Boolean |
Whether the rule is disabled |
[optional] |
| variation |
Integer |
The index of the variation, from the array of variations for this flag |
[optional] |
| rollout |
Rollout |
|
[optional] |
| clauses |
Array<Clause> |
An array of clauses used for individual targeting based on attributes |
|
| track_events |
Boolean |
Whether LaunchDarkly tracks events for this rule |
|
| description |
String |
The rule description |
[optional] |
| ref |
String |
|
[optional] |
require 'launchdarkly_api'
instance = LaunchDarklyApi::Rule.new(
_id: null,
disabled: null,
variation: null,
rollout: null,
clauses: null,
track_events: null,
description: null,
ref: null
)