Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 697 Bytes

FlagEventImpactRep.md

File metadata and controls

24 lines (18 loc) · 697 Bytes

LaunchDarklyApi::FlagEventImpactRep

Properties

Name Type Description Notes
size String The size of the flag event impact. Sizes are defined as: none (0%), small (0-20%), medium (20-80%), large (>80%) [optional]
percentage Float The percentage of the flag event impact [optional]
reason String [optional]
evaluations_summary EvaluationsSummary [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::FlagEventImpactRep.new(
  size: medium,
  percentage: 50,
  reason: null,
  evaluations_summary: null
)