Documentation
¶
Overview ¶
Package entity contains entities for github aggregator application.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Organization ¶
type Organization struct {
Login string `json:"login"`
ReposURL string `json:"repos_url"`
AvatarURL string `json:"avatar_url"`
}
Organization is an entity which represents github organization.
type PullRequest ¶ added in v0.2.2
type PullRequest struct {
HTMLURL string `json:"html_url"`
State string `json:"state"`
Title string `json:"title"`
User User `json:"user"`
Assignees []Assignee `json:"assignees"`
RequestedReviewers []Reviewer `json:"requested_reviewers"`
Head head `json:"head"`
}
PullRequest is an entity which represents github pull request.
Click to show internal directories.
Click to hide internal directories.