Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
8264730a
Commit
8264730a
authored
Sep 20, 2017
by
Florian Kinder
Committed by
Sander van Harmelen
Sep 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed parsing error (#209)
parent
de927cd7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
merge_requests.go
merge_requests.go
+13
-13
No files found.
merge_requests.go
View file @
8264730a
...
...
@@ -35,19 +35,19 @@ type MergeRequestsService struct {
//
// GitLab API docs: https://docs.gitlab.com/ce/api/merge_requests.html
type
MergeRequest
struct
{
ID
int
`json:"id"`
IID
int
`json:"iid"`
ProjectID
int
`json:"project_id"`
Title
string
`json:"title"`
Description
string
`json:"description"`
WorkInProgress
bool
`json:"work_in_progress"`
State
string
`json:"state"`
CreatedAt
*
time
.
Time
`json:"created_at"`
UpdatedAt
*
time
.
Time
`json:"updated_at"`
TargetBranch
string
`json:"target_branch"`
SourceBranch
string
`json:"source_branch"`
Upvotes
int
`json:"upvotes"`
Downvotes
int
`json:"downvotes"`
ID
int
`json:"id"`
IID
int
`json:"iid"`
ProjectID
int
`json:"project_id"`
Title
string
`json:"title"`
Description
string
`json:"description"`
WorkInProgress
bool
`json:"work_in_progress"`
State
string
`json:"state"`
CreatedAt
string
`json:"created_at"`
UpdatedAt
string
`json:"updated_at"`
TargetBranch
string
`json:"target_branch"`
SourceBranch
string
`json:"source_branch"`
Upvotes
int
`json:"upvotes"`
Downvotes
int
`json:"downvotes"`
Author
struct
{
Name
string
`json:"name"`
Username
string
`json:"username"`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment