File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
src/main/java/org/gitlab4j/api/models Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,9 @@ public String toString() {
7474 private Integer weight ;
7575 private Boolean discussionLocked ;
7676 private TimeStats timeStats ;
77+ private String severity ;
78+ private String issueType ;
79+ private IssueEpic epic ;
7780
7881 private Integer upvotes ;
7982 private Integer downvotes ;
@@ -344,6 +347,30 @@ public void setTaskCompletionStatus(TaskCompletionStatus taskCompletionStatus) {
344347 this .taskCompletionStatus = taskCompletionStatus ;
345348 }
346349
350+ public String getIssueType () {
351+ return issueType ;
352+ }
353+
354+ public void setIssueType (String issueType ) {
355+ this .issueType = issueType ;
356+ }
357+
358+ public String getSeverity () {
359+ return severity ;
360+ }
361+
362+ public void setSeverity (String severity ) {
363+ this .severity = severity ;
364+ }
365+
366+ public IssueEpic getEpic () {
367+ return epic ;
368+ }
369+
370+ public void setEpic (IssueEpic epic ) {
371+ this .epic = epic ;
372+ }
373+
347374 @ Override
348375 public String toString () {
349376 return (JacksonJson .toJsonString (this ));
Original file line number Diff line number Diff line change 1+ package org .gitlab4j .api .models ;
2+
3+ import org .gitlab4j .api .utils .JacksonJson ;
4+
5+ public class IssueEpic extends AbstractMinimalEpic <IssueEpic > {
6+ private static final long serialVersionUID = 1L ;
7+
8+ public String toString () {
9+ return (JacksonJson .toJsonString (this ));
10+ }
11+ }
You can’t perform that action at this time.
0 commit comments