Commit fd1d73af authored by Stephan van Leeuwen's avatar Stephan van Leeuwen

Added support for archived property

parent 7a4be6b9
......@@ -59,6 +59,9 @@ public class GitlabProject {
@JsonProperty("last_activity_at")
private Date _lastActivityAt;
@JsonProperty("archived")
private boolean _archived;
private GitlabNamespace _namespace;
public Integer getId() {
......@@ -221,6 +224,14 @@ public class GitlabProject {
_public = aPublic;
}
public boolean isArchived() {
return _archived;
}
public void setArchived(boolean archived) {
_archived = archived;
}
public Date getLastActivityAt() {
return _lastActivityAt;
}
......
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