Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdStatus ¶
Types ¶
type Issue ¶
type Issue struct {
ID int `json:"id"`
Title string `json:"title"`
State string `json:"state"`
Repository struct {
FullName string `json:"full_name"`
} `json:"repository"`
Links struct {
HTML struct {
Href string `json:"href"`
} `json:"html"`
} `json:"links"`
}
Issue represents a Bitbucket issue
type PRList ¶
type PRList struct {
Size int `json:"size"`
Values []PullRequest `json:"values"`
}
PRList represents a paginated list of pull requests
type PullRequest ¶
type PullRequest struct {
ID int `json:"id"`
Title string `json:"title"`
State string `json:"state"`
Destination struct {
Repository struct {
FullName string `json:"full_name"`
} `json:"repository"`
} `json:"destination"`
Links struct {
HTML struct {
Href string `json:"href"`
} `json:"html"`
} `json:"links"`
}
PullRequest represents a Bitbucket pull request
type StatusOptions ¶
Click to show internal directories.
Click to hide internal directories.