forked from gitlab4j/gitlab4j-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIssueChanges.java
34 lines (25 loc) · 852 Bytes
/
IssueChanges.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package org.gitlab4j.api.webhook;
import java.util.Date;
public class IssueChanges extends EventChanges {
private ChangeContainer<Date> dueDate;
private ChangeContainer<Boolean> confidential;
private ChangeContainer<String> heathStatus;
public ChangeContainer<Date> getDueDate() {
return dueDate;
}
public void setDueDate(ChangeContainer<Date> dueDate) {
this.dueDate = dueDate;
}
public ChangeContainer<Boolean> getConfidential() {
return confidential;
}
public void setConfidential(ChangeContainer<Boolean> confidential) {
this.confidential = confidential;
}
public ChangeContainer<String> getHeathStatus() {
return heathStatus;
}
public void setHeathStatus(ChangeContainer<String> heathStatus) {
this.heathStatus = heathStatus;
}
}