interface PullRequestComment {
    changeLog: PullRequestCommentChangeLog[];
    content: string;
    created: string;
    createdUser: User;
    filePath: null | string;
    id: number;
    newBlobId: null | string;
    notifications: PullRequestCommentNotification[];
    oldBlobId: null | string;
    position: null | number;
    stars: Star[];
    updated: string;
}

Properties

content: string
created: string
createdUser: User
filePath: null | string
id: number
newBlobId: null | string
oldBlobId: null | string
position: null | number
stars: Star[]
updated: string