Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 893 Bytes

File metadata and controls

26 lines (19 loc) · 893 Bytes

EnvironmentSummary

Properties

Name Type Description Notes
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]
key string A project-unique key for the environment [default to undefined]
name string A human-friendly name for the environment [default to undefined]
color string The color used to indicate this environment in the UI [default to undefined]

Example

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

const instance: EnvironmentSummary = {
    _links,
    key,
    name,
    color,
};

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