Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.83 KB

File metadata and controls

36 lines (29 loc) · 1.83 KB

DependentMetricOrMetricGroupRep

Properties

Name Type Description Notes
key string A unique key to reference the metric or metric group [default to undefined]
_versionId string The version ID of the metric or metric group [default to undefined]
name string A human-friendly name for the metric or metric group [default to undefined]
kind string If this is a metric, then it represents the kind of event the metric tracks. If this is a metric group, then it represents the group type [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]
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]
isGroup boolean Whether this is a metric group or a metric [default to undefined]
metrics Array<MetricInGroupRep> An ordered list of the metrics in this metric group [optional] [default to undefined]

Example

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

const instance: DependentMetricOrMetricGroupRep = {
    key,
    _versionId,
    name,
    kind,
    isNumeric,
    eventKey,
    _links,
    isGroup,
    metrics,
};

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