Interface PullRequestDestination

interface PullRequestDestination {
    branch: {
        name: string;
    };
    commit?: {
        hash: string;
    };
    repository: {
        full_name: string;
        uuid: string;
    };
}

Hierarchy (view full)

Properties

branch: {
    name: string;
}
commit?: {
    hash: string;
}
repository: {
    full_name: string;
    uuid: string;
}