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