You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A unique key to reference the metric or metric group
version_id
str
The version ID of the metric or metric group
name
str
A human-friendly name for the metric or metric group
kind
str
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
is_numeric
bool
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]
event_key
str
The event key sent with the metric. Only relevant for custom metrics.
An ordered list of the metrics in this metric group
[optional]
Example
fromlaunchdarkly_api.models.dependent_metric_or_metric_group_repimportDependentMetricOrMetricGroupRep# TODO update the JSON string belowjson="{}"# create an instance of DependentMetricOrMetricGroupRep from a JSON stringdependent_metric_or_metric_group_rep_instance=DependentMetricOrMetricGroupRep.from_json(json)
# print the JSON string representation of the objectprint(DependentMetricOrMetricGroupRep.to_json())
# convert the object into a dictdependent_metric_or_metric_group_rep_dict=dependent_metric_or_metric_group_rep_instance.to_dict()
# create an instance of DependentMetricOrMetricGroupRep from a dictdependent_metric_or_metric_group_rep_from_dict=DependentMetricOrMetricGroupRep.from_dict(dependent_metric_or_metric_group_rep_dict)