Interface NotificationSubject

The subject of a GitHub notification (the Issue, PR, Release, etc. that triggered it).

interface NotificationSubject {
    latest_comment_url: null | string;
    title: string;
    type: NotificationSubjectType;
    url: string;
}

Properties

latest_comment_url: null | string

URL of the latest comment on the subject

title: string

Title of the subject

Type of the subject

url: string

API URL of the subject