-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathbitbucket_server.go
125 lines (112 loc) · 4.5 KB
/
bitbucket_server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package sdk
type BitbucketServerPullRequest struct {
ID int `json:"id"`
Version int `json:"version"`
Title string `json:"title"`
Description string `json:"description"`
State string `json:"state"`
Open bool `json:"open"`
Closed bool `json:"closed"`
CreatedDate int `json:"createdDate"`
UpdatedDate int `json:"updatedDate"`
FromRef BitbucketServerRef `json:"fromRef"`
ToRef BitbucketServerRef `json:"toRef"`
Locked bool `json:"locked"`
Author *BitbucketServerAuthor `json:"author,omitempty"`
Reviewers []struct {
User BitbucketServerActor `json:"user"`
LastReviewedCommit string `json:"lastReviewedCommit"`
Role string `json:"role"`
Approved bool `json:"approved"`
Status string `json:"status"`
} `json:"reviewers,omitempty"`
Participants []BitbucketServerParticipant `json:"participants,omitempty"`
Properties PullRequestProperties `json:"properties,omitempty"`
Links struct {
Self []struct {
Href string `json:"href"`
} `json:"self"`
} `json:"links"`
}
type PullRequestProperties struct {
MergeCommit MergeCommitProperty `json:"mergeCommit"`
}
type MergeCommitProperty struct {
ID string `json:"id"`
DisplayID string `json:"displayId"`
}
type BitbucketServerParticipant struct {
User BitbucketServerActor `json:"user"`
LastReviewedCommit string `json:"lastReviewedCommit"`
Role string `json:"role"`
Approved bool `json:"approved"`
Status string `json:"status"`
}
type BitbucketServerRef struct {
ID string `json:"id"`
DisplayID string `json:"displayId"`
LatestCommit string `json:"latestCommit"`
Repository BitbucketServerRepository `json:"repository"`
Type string `json:"type"`
}
type BitbucketServerAuthor struct {
User BitbucketServerActor `json:"user"`
Role string `json:"role"`
Approved bool `json:"approved"`
Status string `json:"status"`
}
type BitbucketServerRepository struct {
ID int64 `json:"id"`
Slug string `json:"slug"`
Name interface{} `json:"name"`
ScmID string `json:"scmId"`
State string `json:"state"`
StatusMessage string `json:"statusMessage"`
Forkable bool `json:"forkable"`
Project BitbucketServerProject `json:"project"`
Public bool `json:"public"`
}
type BitbucketServerProject struct {
Key string `json:"key"`
ID int64 `json:"id"`
Name string `json:"name"`
Public bool `json:"public"`
Type string `json:"type"`
}
type BitbucketServerActor struct {
Name string `json:"name"`
EmailAddress string `json:"emailAddress"`
ID int `json:"id"`
DisplayName string `json:"displayName"`
Active bool `json:"active"`
Slug string `json:"slug"`
Type string `json:"type"`
}
type BitbucketServerChange struct {
Ref BitbucketServerRef `json:"ref"`
RefID string `json:"refId"`
FromHash string `json:"fromHash"`
ToHash string `json:"toHash"`
Type string `json:"type"`
}
type BitbucketServerPreviousTarget struct {
ID string `json:"id"`
DisplayID string `json:"displayId"`
Type string `json:"type"`
LatestCommit string `json:"latestCommit"`
LatestChangeset string `json:"latestChangeset"`
}
type BitbucketServerComment struct {
Properties BitbucketServerProperties `json:"properties"`
ID int64 `json:"id"`
Version int64 `json:"version"`
Text string `json:"text"`
Author BitbucketServerActor `json:"author"`
CreatedDate int64 `json:"createdDate"`
UpdatedDate int64 `json:"updatedDate"`
Comments []string `json:"comments"`
Tasks []string `json:"tasks"`
}
type BitbucketServerProperties struct {
RepositoryID int64 `json:"repositoryId"`
}