| Name |
Type |
Description |
Notes |
| name |
string |
The repository name |
[default to undefined] |
| sourceLink |
string |
A URL to access the repository |
[optional] [default to undefined] |
| commitUrlTemplate |
string |
A template for constructing a valid URL to view the commit |
[optional] [default to undefined] |
| hunkUrlTemplate |
string |
A template for constructing a valid URL to view the hunk |
[optional] [default to undefined] |
| type |
string |
The type of repository |
[default to undefined] |
| defaultBranch |
string |
The repository's default branch |
[default to undefined] |
| enabled |
boolean |
Whether or not a repository is enabled for code reference scanning |
[default to undefined] |
| version |
number |
The version of the repository's saved information |
[default to undefined] |
| branches |
Array<BranchRep> |
An array of the repository's branches that have been scanned for code references |
[optional] [default to undefined] |
| _links |
{ [key: string]: any; } |
|
[default to undefined] |
| _access |
Access |
|
[optional] [default to undefined] |
import { RepositoryRep } from 'launchdarkly-api-typescript';
const instance: RepositoryRep = {
name,
sourceLink,
commitUrlTemplate,
hunkUrlTemplate,
type,
defaultBranch,
enabled,
version,
branches,
_links,
_access,
};
[Back to Model list] [Back to API list] [Back to README]