Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 891 Bytes

InsightsMetricScore.md

File metadata and controls

28 lines (22 loc) · 891 Bytes

LaunchDarklyApi::InsightsMetricScore

Properties

Name Type Description Notes
score Integer The score for the metric
aggregate_of Array<String> The keys of the metrics that were aggregated to calculate this score [optional]
diff_vs_last_period Integer [optional]
indicator String
indicator_range InsightsMetricIndicatorRange
last_period InsightsMetricScore [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::InsightsMetricScore.new(
  score: 100,
  aggregate_of: [&quot;deploymentFrequency&quot;,&quot;leadTime&quot;],
  diff_vs_last_period: null,
  indicator: null,
  indicator_range: null,
  last_period: null
)