Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 895 Bytes

Rule.md

File metadata and controls

30 lines (24 loc) · 895 Bytes

LaunchDarklyApi::Rule

Properties

Name Type Description Notes
_id String The flag rule ID [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]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::Rule.new(
  _id: null,
  variation: null,
  rollout: null,
  clauses: null,
  track_events: null,
  description: null,
  ref: null
)