A collection of changes.

interface TfvcChangeset {
    _links?: any;
    accountId?: string;
    author?: IdentityRef;
    changes?: TfvcChange[];
    changesetId?: number;
    checkedInBy?: IdentityRef;
    checkinNotes?: CheckinNote[];
    collectionId?: string;
    comment?: string;
    commentTruncated?: boolean;
    createdDate?: Date;
    hasMoreChanges?: boolean;
    policyOverride?: TfvcPolicyOverrideInfo;
    teamProjectIds?: string[];
    url?: string;
    workItems?: AssociatedWorkItem[];
}

Hierarchy (View Summary)

Properties

_links?: any

A collection of REST reference links.

accountId?: string

Changeset Account Id also known as Organization Id.

author?: IdentityRef

Alias or display name of user.

changes?: TfvcChange[]

List of associated changes.

changesetId?: number

Changeset Id.

checkedInBy?: IdentityRef

Alias or display name of user.

checkinNotes?: CheckinNote[]

List of Checkin Notes for the changeset.

collectionId?: string

Changeset collection Id.

comment?: string

Comment for the changeset.

commentTruncated?: boolean

Was the Comment result truncated?

createdDate?: Date

Creation date of the changeset.

hasMoreChanges?: boolean

True if more changes are available.

policyOverride?: TfvcPolicyOverrideInfo

Policy Override for the changeset.

teamProjectIds?: string[]

Team Project Ids for the changeset.

url?: string

URL to retrieve the item.

workItems?: AssociatedWorkItem[]

List of work items associated with the changeset.