Update api_response.go

Set type for PullRequest.Version to int32
This commit is contained in:
Sanket Patel
2018-06-08 14:49:53 -05:00
committed by GitHub
parent 51cf981aa2
commit 66450bf156

View File

@ -125,7 +125,7 @@ type PullRequestRef struct {
type PullRequest struct { type PullRequest struct {
ID int `json:"id"` ID int `json:"id"`
Version int `json:"version"` Version int32 `json:"version"`
Title string `json:"title"` Title string `json:"title"`
Description string `json:"description"` Description string `json:"description"`
State string `json:"state"` State string `json:"state"`