Interface GitHubIssueComment

Represents a comment on a GitHub issue.

interface GitHubIssueComment {
    body: string;
    created_at: string;
    html_url: string;
    id: number;
    updated_at: string;
    user: GitHubUser;
}

Properties

body: string

Comment body

created_at: string

ISO 8601 timestamp of creation

html_url: string

URL to the comment on GitHub

id: number

Unique numeric comment ID

updated_at: string

ISO 8601 timestamp of last update

User who wrote the comment