File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
src/main/java/org/gitlab4j/api/webhook Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,8 @@ public static class ObjectAttributes {
131
131
132
132
private Integer id ;
133
133
private String note ;
134
+ private String discussionId ;
135
+ private String type ;
134
136
private NoteableType noteableType ;
135
137
private Integer authorId ;
136
138
private Date createdAt ;
@@ -160,6 +162,22 @@ public void setNote(String note) {
160
162
this .note = note ;
161
163
}
162
164
165
+ public String getDiscussionId () {
166
+ return discussionId ;
167
+ }
168
+
169
+ public void setDiscussionId (String discussionId ) {
170
+ this .discussionId = discussionId ;
171
+ }
172
+
173
+ public String getType () {
174
+ return type ;
175
+ }
176
+
177
+ public void setType (String type ) {
178
+ this .type = type ;
179
+ }
180
+
163
181
public NoteableType getNoteableType () {
164
182
return noteableType ;
165
183
}
You can’t perform that action at this time.
0 commit comments