type
GitHub.commit
=
{ 
string
 
url
, 
string
 
sha
, 
string
 
message
, 
 }
type
GitHub.commit_user
=
{ 
string
 
name
, 
string
 
email
, 
 }
type
GitHub.direction
=
Variant
  •    
    { 
    void
     
    asc
     }
  • or 
    { 
    void
     
    desc
     }
type
GitHub.download
=
{ 
string
 
url
, 
string
 
html_url
, 
int
 
id
, 
string
 
name
, 
string
 
description
, 
int
 
size
, 
int
 
download_count
, 
string
 
content_type
 }
type
GitHub.encoding
=
Variant
  •    
    { 
    void
     
    utf8
     }
  • or 
    { 
    void
     
    base64
     }
type
GitHub.file
=
{ 
string
 
sha
, 
string
 
filename
, 
string
 
status
, 
int
 
additions
, 
int
 
deletions
, 
int
 
changes
, 
string
 
blob_url
, 
string
 
raw_url
, 
string
 
patch
 }
type
GitHub.full_commit
=
{ 
string
 
sha
, 
GitHub.commit
 
commit
, 
 
parents
, 
string
 
url
, 
GitHub.short_user
 
committer
, 
 }
type
GitHub.gist
=
{ 
int
 
id
, 
bool
 
public
, 
string
 
description
, 
string
 
url
, 
string
 
html_url
, 
string
 
git_push_url
, 
string
 
git_pull_url
, 
int
 
comments
, 
Date.date
 
created_at
, 
Date.date
 
updated_at
, 
 }
type
GitHub.gist_file
=
(
string
, 
{ 
int
 
size
, 
string
 
filename
, 
string
 
raw_url
, 
string
 
content
 }
)
type
GitHub.gist_forks
=
{ 
string
 
url
, 
Date.date
 
created_at
 }
type
GitHub.gist_history
=
{ 
string
 
version
, 
string
 
url
, 
option
(
{ 
int
 
deletions
, 
int
 
additions
, 
int
 
total
 }
)
 
change_status
, 
Date.date
 
committed_at
 }
type
GitHub.id_name_url
=
{ 
string
 
url
, 
string
 
name
, 
int
 
id
 }
type
GitHub.issue
=
{ 
string
 
url
, 
string
 
html_url
, 
int
 
number
, 
Variant
  •    
    { 
    void
     
    open
     }
  • or 
    { 
    void
     
    closed
     }
 
state
, 
string
 
title
, 
string
 
body
, 
 
labels
, 
int
 
comments
, 
 
pull_request
, 
Date.date
 
closed_at
, 
Date.date
 
created_at
, 
Date.date
 
updated_at
 }
type
GitHub.issue_comment
=
{ 
int
 
id
, 
string
 
url
, 
string
 
body
, 
Date.date
 
created_at
, 
Date.date
 
updated_at
 }
type
GitHub.label
=
{ 
string
 
url
, 
string
 
name
, 
string
 
color
 }
type
GitHub.links
=
{ 
{ 
string
 
href
 }
 
self
, 
{ 
string
 
href
 }
 
html
, 
{ 
string
 
href
 }
 
comments
, 
{ 
string
 
href
 }
 
review_comments
, 
{ 
string
 
href
 }
 
pull_request
, 
{ 
string
 
href
 }
 
git
 }
type
GitHub.links_no_href
=
{ 
string
 
self
, 
string
 
html
, 
string
 
comments
, 
string
 
review_comments
, 
string
 
pull_request
, 
string
 
git
 }
type
GitHub.milestone
=
{ 
string
 
url
, 
int
 
number
, 
Variant
  •    
    { 
    void
     
    open
     }
  • or 
    { 
    void
     
    closed
     }
 
state
, 
string
 
title
, 
string
 
description
, 
int
 
open_issues
, 
int
 
closed_issues
, 
Date.date
 
created_at
, 
Date.date
 
due_on
 }
type
GitHub.plan
=
{ 
string
 
name
, 
int
 
space
, 
int
 
private_repos
 }
type
GitHub.public_key
=
{ 
int
 
id
, 
string
 
key
, 
string
 
title
, 
string
 
url
, 
bool
 
verified
 }
type
GitHub.pull_req
=
{ 
string
 
url
, 
string
 
html_url
, 
string
 
diff_url
, 
string
 
patch_url
, 
string
 
issue_url
, 
int
 
number
, 
Variant
  •    
    { 
    void
     
    open
     }
  • or 
    { 
    Date.date
     
    closed
     }
  • or 
    { 
    string
     
    other
     }
 
state
, 
string
 
title
, 
string
 
body
, 
Date.date
 
created_at
, 
Date.date
 
updated_at
, 
Date.date
 
closed_at
, 
Date.date
 
merged_at
, 
GitHub.ref
 
head
, 
GitHub.ref
 
base
, 
GitHub.links
 
_links
, 
bool
 
merged
, 
bool
 
mergeable
, 
GitHub.short_user
 
merged_by
, 
int
 
comments
, 
int
 
commits
, 
int
 
additions
, 
int
 
deletions
, 
int
 
changed_files
 }
type
GitHub.pull_request
=
{ 
string
 
html_url
, 
string
 
diff_url
, 
string
 
patch_url
 }
type
GitHub.ref
=
{ 
string
 
label
, 
string
 
ref
, 
string
 
sha
, 
 }
type
GitHub.repo_comment
=
{ 
string
 
html_url
, 
string
 
url
, 
int
 
id
, 
string
 
body
, 
string
 
path
, 
int
 
position
, 
int
 
line
, 
string
 
commit_id
, 
Date.date
 
created_at
, 
Date.date
 
updated_at
 }
type
GitHub.repository
=
{ 
string
 
url
, 
string
 
html_url
, 
string
 
clone_url
, 
string
 
git_url
, 
string
 
ssh_url
, 
string
 
svn_url
, 
string
 
mirror_url
, 
int
 
id
, 
string
 
name
, 
string
 
full_name
, 
string
 
description
, 
string
 
homepage
, 
string
 
language
, 
bool
 
private
, 
bool
 
fork
, 
int
 
forks
, 
int
 
watchers
, 
int
 
size
, 
string
 
master_branch
, 
int
 
open_issues
, 
Date.date
 
pushed_at
, 
Date.date
 
created_at
, 
Date.date
 
updated_at
, 
 
organization
, 
 
has_issues
, 
 
has_wiki
, 
 
has_downloads
 }
type
GitHub.short_user
=
{ 
int
 
id
, 
string
 
login
, 
string
 
url
, 
string
 
gravatar_id
, 
string
 
avatar_url
, 
string
 
type
, 
int
 
contributions
 }
type
GitHub.state
=
Variant
  •    
    { 
    void
     
    open
     }
  • or 
    { 
    void
     
    closed
     }
type
GitHub.stats
=
{ 
int
 
additions
, 
int
 
deletions
, 
int
 
total
 }
type
GitHub.url_sha
=
{ 
string
 
url
, 
string
 
sha
 }
type
GitHub.user
=
{ 
int
 
id
, 
string
 
login
, 
string
 
name
, 
string
 
company
, 
string
 
gravatar_id
, 
Date.date
 
created_at
, 
string
 
location
, 
string
 
blog
, 
int
 
public_repos
, 
int
 
public_gists
, 
int
 
followers
, 
int
 
following
, 
string
 
user_type
, 
string
 
avatar_url
, 
string
 
url
, 
string
 
html_url
, 
 }
type
GitHub.user_id
=
Variant
  •    
    { 
    string
     
    self
     }
  • or 
    { 
    string
     
    login
     }
type
GitHub.user_more
=
{ 
int
 
total_private_repos
, 
int
 
collaborators
, 
int
 
disk_usage
, 
int
 
owned_private_repos
, 
int
 
private_gists
, 
 }

Comments

The browser you use is not supported by this application, probably because it lacks some critical features.
For a better experience, please consider using this application with a supported browser.