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