mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Changing Repository struct to allow omit on serialization
This commit is contained in:
parent
284a2dc210
commit
f1225dcec2
@ -58,19 +58,19 @@ type Project struct {
|
||||
|
||||
// Repository contains data from a BitBucket Repository
|
||||
type Repository struct {
|
||||
Slug string `json:"slug"`
|
||||
ID int `json:"id"`
|
||||
Name string `json:"name"`
|
||||
ScmID string `json:"scmId"`
|
||||
State string `json:"state"`
|
||||
StatusMessage string `json:"statusMessage"`
|
||||
Forkable bool `json:"forkable"`
|
||||
Project Project `json:"project"`
|
||||
Public bool `json:"public"`
|
||||
Links struct {
|
||||
Clone []CloneLink `json:"clone"`
|
||||
Self []SelfLink `json:"self"`
|
||||
} `json:"links"`
|
||||
Slug string `json:"slug,omitempty"`
|
||||
ID int `json:"id,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
ScmID string `json:"scmId,omitempty"`
|
||||
State string `json:"state,omitempty"`
|
||||
StatusMessage string `json:"statusMessage,omitempty"`
|
||||
Forkable bool `json:"forkable,omitempty"`
|
||||
Project *Project `json:"project,omitempty"`
|
||||
Public bool `json:"public,omitempty"`
|
||||
Links *struct {
|
||||
Clone []CloneLink `json:"clone,omitempty"`
|
||||
Self []SelfLink `json:"self,omitempty"`
|
||||
} `json:"links,omitempty"`
|
||||
}
|
||||
|
||||
type UserWithNameEmail struct {
|
||||
|
@ -413,7 +413,7 @@ func TestGetPullRequestResponse(t *testing.T) {
|
||||
ID: "refs/heads/feature-ABC-123",
|
||||
Repository: Repository{
|
||||
Slug: "my-repo",
|
||||
Project: Project{
|
||||
Project: &Project{
|
||||
Key: "PRJ",
|
||||
},
|
||||
},
|
||||
@ -422,7 +422,7 @@ func TestGetPullRequestResponse(t *testing.T) {
|
||||
ID: "refs/heads/master",
|
||||
Repository: Repository{
|
||||
Slug: "my-repo",
|
||||
Project: Project{
|
||||
Project: &Project{
|
||||
Key: "PRJ",
|
||||
},
|
||||
},
|
||||
|
@ -563,7 +563,7 @@ func TestDefaultApiService_CreatePullRequest(t *testing.T) {
|
||||
ID: "refs/heads/feature",
|
||||
Repository: Repository{
|
||||
Slug: "repo1",
|
||||
Project: Project{
|
||||
Project: &Project{
|
||||
Key: "PROJ",
|
||||
},
|
||||
},
|
||||
@ -572,7 +572,7 @@ func TestDefaultApiService_CreatePullRequest(t *testing.T) {
|
||||
ID: "refs/heads/master",
|
||||
Repository: Repository{
|
||||
Slug: "repo1",
|
||||
Project: Project{
|
||||
Project: &Project{
|
||||
Key: "PROJ",
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user