Bitbucket Data Center API Client
    Preparing search index...

    Interface PullRequestRefInput

    A ref reference used when creating a pull request. repository is only needed for cross-fork pull requests; it defaults to the repository the pull request is created in.

    interface PullRequestRefInput {
        id: string;
        repository?: { project: { key: string }; slug: string };
    }
    Index

    Properties

    Properties

    id: string

    Full ref id (e.g. 'refs/heads/feature/x')

    repository?: { project: { key: string }; slug: string }