Flag representation for Views API - contains only fields actually used by the Views service
| Name | Type | Description | Notes |
|---|---|---|---|
| key | string | A unique key used to reference the flag | [default to undefined] |
| name | string | A human-friendly name for the flag | [default to undefined] |
| description | string | Description of the flag | [optional] [default to undefined] |
| creationDate | number | Creation date in milliseconds | [optional] [default to undefined] |
| _version | number | Version of the flag | [optional] [default to undefined] |
| archived | boolean | Whether the flag is archived | [optional] [default to undefined] |
| tags | Array<string> | Tags for the flag | [optional] [default to undefined] |
| temporary | boolean | Whether the flag is temporary | [optional] [default to undefined] |
| includeInSnippet | boolean | Whether to include in snippet | [optional] [default to undefined] |
| maintainer | ExpandedFlagMaintainer | [optional] [default to undefined] | |
| _links | ParentAndSelfLinks | [optional] [default to undefined] |
import { ExpandedFlag } from 'launchdarkly-api-typescript';
const instance: ExpandedFlag = {
key,
name,
description,
creationDate,
_version,
archived,
tags,
temporary,
includeInSnippet,
maintainer,
_links,
};