Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.46 KB

File metadata and controls

34 lines (27 loc) · 1.46 KB

MetricV2Rep

Properties

Name Type Description Notes
key string The metric key [default to undefined]
_versionId string The version ID of the metric [optional] [default to undefined]
name string The metric name [default to undefined]
kind string The kind of event the metric tracks [default to undefined]
isNumeric boolean For custom metrics, whether to track numeric changes in value against a baseline (<code>true</code>) or to track a conversion when an end user takes an action (<code>false</code>). [optional] [default to undefined]
unitAggregationType string The type of unit aggregation to use for the metric [optional] [default to undefined]
eventKey string The event key sent with the metric. Only relevant for custom metrics. [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]

Example

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

const instance: MetricV2Rep = {
    key,
    _versionId,
    name,
    kind,
    isNumeric,
    unitAggregationType,
    eventKey,
    _links,
};

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