Class representing a branch object.

interface TfvcBranch {
    _links?: any;
    children?: TfvcBranch[];
    createdDate?: Date;
    description?: string;
    isDeleted?: boolean;
    mappings?: TfvcBranchMapping[];
    owner?: IdentityRef;
    parent?: TfvcShallowBranchRef;
    path?: string;
    relatedBranches?: TfvcShallowBranchRef[];
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

A collection of REST reference links.

children?: TfvcBranch[]

List of children for the branch.

createdDate?: Date

Creation date of the branch.

description?: string

Branch description.

isDeleted?: boolean

Is the branch deleted?

mappings?: TfvcBranchMapping[]

List of branch mappings.

owner?: IdentityRef

Alias or display name of user

Path of the branch's parent.

path?: string

Path for the branch.

relatedBranches?: TfvcShallowBranchRef[]

List of paths of the related branches.

url?: string

URL to retrieve the item.