interface IssueComment {
    changeLog: IssueCommentChangeLog[];
    content: null | string;
    created: string;
    createdUser: User;
    id: number;
    issueId: number;
    notifications: ActivityNotification[];
    projectId: number;
    stars: Star[];
    updated: string;
}

Properties

content: null | string
created: string
createdUser: User
id: number
issueId: number
notifications: ActivityNotification[]
projectId: number
stars: Star[]
updated: string