Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.11 KB

File metadata and controls

30 lines (23 loc) · 1.11 KB

BranchRep

Properties

Name Type Description Notes
name string The branch name [default to undefined]
head string An ID representing the branch HEAD. For example, a commit SHA. [default to undefined]
updateSequenceId number An optional ID used to prevent older data from overwriting newer data [optional] [default to undefined]
syncTime number [default to undefined]
references Array<ReferenceRep> An array of flag references found on the branch [optional] [default to undefined]
_links { [key: string]: any; } The location and content type of related resources [default to undefined]

Example

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

const instance: BranchRep = {
    name,
    head,
    updateSequenceId,
    syncTime,
    references,
    _links,
};

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