Interface GistFork

Represents a fork of a gist.

interface GistFork {
    created_at: string;
    html_url: string;
    id: string;
    updated_at: string;
    user: GitHubUser;
}

Properties

created_at: string

ISO 8601 creation timestamp

html_url: string

GitHub web URL of the fork

id: string

Unique gist ID of the fork

updated_at: string

ISO 8601 last-update timestamp

Owner of the fork