interface PullRequest {
    assignee: null | User;
    attachments: PullRequestAttachmentFile[];
    base: string;
    baseCommit: null | string;
    branch: string;
    branchCommit: null | string;
    closeAt: null | string;
    created: string;
    createdUser: User;
    description: string;
    id: number;
    issue: null | Issue;
    mergeAt: null | string;
    mergeCommit: null | string;
    number: number;
    projectId: number;
    repositoryId: number;
    stars: Star[];
    status: PullRequestStatus;
    summary: string;
    updated: string;
    updatedUser: User;
}

Properties

assignee: null | User
base: string
baseCommit: null | string
branch: string
branchCommit: null | string
closeAt: null | string
created: string
createdUser: User
description: string
id: number
issue: null | Issue
mergeAt: null | string
mergeCommit: null | string
number: number
projectId: number
repositoryId: number
stars: Star[]
summary: string
updated: string
updatedUser: User