Bitbucket Data Center API Client
    Preparing search index...

    Interface ChangesParams

    Query parameters accepted by GET /rest/api/latest/projects/{key}/repos/{slug}/pull-requests/{id}/changes.

    interface ChangesParams {
        limit?: number;
        start?: number;
        withComments?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    limit?: number

    Maximum number of results to return per page. Bitbucket default is 25, maximum is 1000.

    start?: number

    0-based index of the first result to return. Use nextPageStart from the previous response to paginate forward.

    withComments?: boolean

    When true, includes the number of comments for each changed file.

    false