Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.22 KB

File metadata and controls

32 lines (25 loc) · 1.22 KB

MetricGroupPost

Properties

Name Type Description Notes
key string A unique key to reference the metric group [optional] [default to undefined]
name string A human-friendly name for the metric group [default to undefined]
kind string The type of the metric group [default to undefined]
description string Description of the metric group [optional] [default to undefined]
maintainerId string The ID of the member who maintains this metric group [default to undefined]
tags Array<string> Tags for the metric group [default to undefined]
metrics Array<MetricInMetricGroupInput> An ordered list of the metrics in this metric group [default to undefined]

Example

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

const instance: MetricGroupPost = {
    key,
    name,
    kind,
    description,
    maintainerId,
    tags,
    metrics,
};

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