Collection of changes made in a pull request.

interface GitPullRequestIterationChanges {
    changeEntries?: GitPullRequestChange[];
    nextSkip?: number;
    nextTop?: number;
}

Properties

changeEntries?: GitPullRequestChange[]

Changes made in the iteration.

nextSkip?: number

Value to specify as skip to get the next page of changes. This will be zero if there are no more changes.

nextTop?: number

Value to specify as top to get the next page of changes. This will be zero if there are no more changes.