Commit 983e34fe authored by Tim Olshansky's avatar Tim Olshansky

Merge pull request #4 from mjdetullio/feature/iid

Add support for MR internal ID
parents fb684160 9622bd63
......@@ -6,6 +6,7 @@ public class GitlabMergeRequest {
public static final String URL = "/merge_requests";
private Integer _id;
private Integer _iid;
private String _title;
private String _state;
private boolean _closed;
......@@ -33,6 +34,14 @@ public class GitlabMergeRequest {
_id = id;
}
public Integer getIid() {
return _iid;
}
public void setIid(Integer iid) {
_iid = iid;
}
public String getTargetBranch() {
return _targetBranch;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment