Interface PullRequest

interface PullRequest {
    author: User;
    description: string;
    destination: PullRequestDestination;
    id: number;
    source: PullRequestSource;
    state:
        | "MERGED"
        | "SUPERSEDED"
        | "OPEN"
        | "DECLINED";
    taskCount: number;
    title: string;
    get labels(): LabelRefCollection;
}

Properties

author: User
description: string
id: number
state:
    | "MERGED"
    | "SUPERSEDED"
    | "OPEN"
    | "DECLINED"
taskCount: number
title: string

Accessors