Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Issue ¶
type Issue struct {
ID int `json:"id"`
Number int `json:"number"` // issue number
Title string `json:"title"`
URL string `json:"html_url"`
Body string `json:"body"`
User User `json:"user"`
State string `json:"state"`
Locked bool `json:"locked"`
Labels []Label `json:"labels"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
ClosedAt string `json:"closed_at"`
Comments []Comment `json:"-"` // ignore for un-marshalling
Reactions Reactions `json:"reactions"`
}
Click to show internal directories.
Click to hide internal directories.