Bitbucket Data Center API Client
    Preparing search index...

    Interface UpdatePullRequestData

    Payload for PUT /rest/api/latest/projects/{key}/repos/{slug}/pull-requests/{id}.

    version must match the pull request's current version (optimistic locking); Bitbucket rejects the request with a 409 Conflict otherwise.

    interface UpdatePullRequestData {
        description?: string;
        reviewers?: { user: { name: string } }[];
        title?: string;
        toRef?: { id: string };
        version: number;
    }
    Index

    Properties

    description?: string
    reviewers?: { user: { name: string } }[]
    title?: string
    toRef?: { id: string }
    version: number