Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.62 KB

File metadata and controls

38 lines (31 loc) · 1.62 KB

Project

Properties

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 Environments [optional] [default to undefined]

Example

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

const instance: Project = {
    _links,
    _id,
    key,
    includeInSnippetByDefault,
    defaultClientSideAvailability,
    name,
    _access,
    tags,
    defaultReleasePipelineKey,
    environments,
};

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