Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.07 KB

File metadata and controls

26 lines (19 loc) · 1.07 KB

MetricInput

Properties

Name Type Description Notes
key string The metric key [default to undefined]
isGroup boolean Whether this is a metric group (true) or a metric (false). Defaults to false [optional] [default to undefined]
primary boolean Deprecated, use <code>primarySingleMetricKey</code> and <code>primaryFunnelKey</code>. Whether this is a primary metric (true) or a secondary metric (false) [optional] [default to undefined]
analysisUnit string The analysis unit to use for this metric. If omitted, analysis uses the iteration&#39;s randomization unit. [optional] [default to undefined]

Example

import { MetricInput } from 'launchdarkly-api-typescript';

const instance: MetricInput = {
    key,
    isGroup,
    primary,
    analysisUnit,
};

[Back to Model list] [Back to API list] [Back to README]