Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 899 Bytes

File metadata and controls

24 lines (17 loc) · 899 Bytes

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]

Example

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

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

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