Interface GistComment

Represents a comment on a gist.

interface GistComment {
    body: string;
    created_at: string;
    id: number;
    updated_at: string;
    user: null | GitHubUser;
}

Properties

body: string

The comment body

created_at: string

ISO 8601 creation timestamp

id: number

Unique comment ID

updated_at: string

ISO 8601 last-update timestamp

user: null | GitHubUser

Author of the comment