From f1225dcec2b80c30746474bf70699513b4a6cc68 Mon Sep 17 00:00:00 2001 From: gfleury Date: Fri, 20 Mar 2020 10:14:43 -0300 Subject: [PATCH] Changing Repository struct to allow omit on serialization --- api_response.go | 26 +++++++++++++------------- api_response_test.go | 4 ++-- default_api_test.go | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/api_response.go b/api_response.go index 78e18cb..5a245c9 100644 --- a/api_response.go +++ b/api_response.go @@ -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 { diff --git a/api_response_test.go b/api_response_test.go index 6fa976b..dc506f6 100644 --- a/api_response_test.go +++ b/api_response_test.go @@ -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", }, }, diff --git a/default_api_test.go b/default_api_test.go index 386b9cd..002e0df 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -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", }, },