Commit 9622bd63 authored by Matt DeTullio's avatar Matt DeTullio

Add support for MR internal ID

parent f26d72c9
......@@ -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;
......@@ -30,6 +31,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