Merge pull request #7 from sanketjpatel/feat/types

Fix User and PullRequest types
This commit is contained in:
George Fleury 2018-06-05 09:16:28 +02:00 committed by GitHub
commit ae298e4f85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"`