Skip to content

Files

Latest commit

625539b · Mar 12, 2024

History

History
22 lines (16 loc) · 568 Bytes

VariationEvalSummary.md

File metadata and controls

22 lines (16 loc) · 568 Bytes

LaunchDarklyApi::VariationEvalSummary

Properties

Name Type Description Notes
value Object The variation value [optional]
before Integer The number of evaluations in the ten minutes before the flag event [optional]
after Integer The number of evaluations in the ten minutes after the flag event [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::VariationEvalSummary.new(
  value: true,
  before: 1000,
  after: 500
)