Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Asset ¶
type Asset struct {
BrowserDownloadURL string `json:"browser_download_url"`
ID int
Name string
Label string
State string
ContentType string `json:"content_type"`
Size int
DownloadCount int `json:"download_count"`
Created time.Time `json:"created_at"`
Updated time.Time `json:"updated_at"`
Uploader User
}
type Issue ¶
type Issue struct {
ID int
URL string
HTMLURL string `json:"html_url"`
Number int
State string
Title string
Body string
User User
Labels []Label
Assignee User
Milestone Milestone
PullRequest struct {
URL string
} `json:"pull_request"`
Closed *time.Time `json:"closed_at"` // nil for open issues
Created time.Time `json:"created_at"`
Updated time.Time `json:"updated_at"`
}
type Milestone ¶
type Milestone struct {
URL string
HTMLURL string `json:"html_url"`
ID int
Number int
State string
Title string
Description string
Creator User
Due *time.Time `json:"due_on"`
Closed *time.Time `json:"closed_at"` // nil for open milestones
Created time.Time `json:"created_at"`
Updated time.Time `json:"updated_at"`
}
Click to show internal directories.
Click to hide internal directories.