Changing Repository struct to allow omit on serialization

This commit is contained in:
gfleury 2020-03-20 10:14:43 -03:00
parent 284a2dc210
commit f1225dcec2
3 changed files with 17 additions and 17 deletions

View File

@ -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 {

View File

@ -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",
},
},

View File

@ -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",
},
},