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