interface UserNotification {
    alreadyRead: boolean;
    comment?: IssueComment;
    id: number;
    issue?: Issue;
    project?: UserNotificationProject;
    pullRequest?: PullRequest;
    pullRequestComment?: PullRequestComment;
    reason: ActivityReason;
    resourceAlreadyRead: boolean;
    sender: User;
    user: User;
}

Properties

alreadyRead: boolean
comment?: IssueComment
id: number
issue?: Issue
pullRequest?: PullRequest
pullRequestComment?: PullRequestComment
resourceAlreadyRead: boolean
sender: User
user: User