| Name |
Type |
Description |
Notes |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[default to undefined] |
| _id |
string |
The ID of this project |
[default to undefined] |
| key |
string |
The key of this project |
[default to undefined] |
| includeInSnippetByDefault |
boolean |
Whether or not flags created in this project are made available to the client-side JavaScript SDK by default |
[default to undefined] |
| defaultClientSideAvailability |
ClientSideAvailability |
|
[optional] [default to undefined] |
| name |
string |
A human-friendly name for the project |
[default to undefined] |
| _access |
Access |
|
[optional] [default to undefined] |
| tags |
Array<string> |
A list of tags for the project |
[default to undefined] |
| defaultReleasePipelineKey |
string |
The key of the default release pipeline for this project |
[optional] [default to undefined] |
| environments |
Array<Environment> |
A list of environments for the project |
[default to undefined] |
import { ProjectRep } from 'launchdarkly-api-typescript';
const instance: ProjectRep = {
_links,
_id,
key,
includeInSnippetByDefault,
defaultClientSideAvailability,
name,
_access,
tags,
defaultReleasePipelineKey,
environments,
};
[Back to Model list] [Back to API list] [Back to README]