| 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] |
import { EnvironmentSummary } from 'launchdarkly-api-typescript';
const instance: EnvironmentSummary = {
_links,
key,
name,
color,
};