Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 603 Bytes

MetricEventDefaultRep.md

File metadata and controls

20 lines (14 loc) · 603 Bytes

LaunchDarklyApi::MetricEventDefaultRep

Properties

Name Type Description Notes
disabled Boolean Whether to disable defaulting missing unit events when calculating results. Defaults to false [optional]
value Float The default value applied to missing unit events. Set to 0 when <code>disabled</code> is false. No other values are currently supported. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::MetricEventDefaultRep.new(
  disabled: null,
  value: 0
)