mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
Fix User and PullRequest types
This commit is contained in:
parent
41485eb53d
commit
7375146849
@ -79,7 +79,7 @@ type UserWithNameEmail struct {
|
|||||||
type User struct {
|
type User struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Email string `json:"emailAddress"`
|
Email string `json:"emailAddress"`
|
||||||
ID string `json:"id"`
|
ID int `json:"id"`
|
||||||
DisplayName string `json:"displayName"`
|
DisplayName string `json:"displayName"`
|
||||||
Active bool `json:"active"`
|
Active bool `json:"active"`
|
||||||
Slug string `json:"slug"`
|
Slug string `json:"slug"`
|
||||||
@ -110,6 +110,7 @@ type PullRequest struct {
|
|||||||
ID int `json:"id"`
|
ID int `json:"id"`
|
||||||
Version int `json:"version"`
|
Version int `json:"version"`
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
Description string `json:"description"`
|
||||||
State string `json:"state"`
|
State string `json:"state"`
|
||||||
Open bool `json:"open"`
|
Open bool `json:"open"`
|
||||||
Closed bool `json:"closed"`
|
Closed bool `json:"closed"`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user