| Name |
Type |
Description |
Notes |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[optional] [default to undefined] |
| name |
string |
The release pipeline name |
[default to undefined] |
| releasePipelineKey |
string |
The release pipeline key |
[default to undefined] |
| releasePipelineDescription |
string |
The release pipeline description |
[default to undefined] |
| phases |
Array<ReleasePhase> |
An ordered list of the release pipeline phases |
[default to undefined] |
| _version |
number |
The release version |
[default to undefined] |
| _releaseVariationId |
string |
The chosen release variation ID to use across all phases of a release |
[optional] [default to undefined] |
| _canceledAt |
number |
|
[optional] [default to undefined] |
import { Release } from 'launchdarkly-api-typescript';
const instance: Release = {
_links,
name,
releasePipelineKey,
releasePipelineDescription,
phases,
_version,
_releaseVariationId,
_canceledAt,
};
[Back to Model list] [Back to API list] [Back to README]