Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
87d8a580
Commit
87d8a580
authored
Mar 17, 2021
by
Jasper
Browse files
Add more field to NoteEvent.ObjectAttributes
parent
750213b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/webhook/NoteEvent.java
View file @
87d8a580
...
@@ -131,6 +131,8 @@ public class NoteEvent extends AbstractEvent {
...
@@ -131,6 +131,8 @@ public class NoteEvent extends AbstractEvent {
private
Integer
id
;
private
Integer
id
;
private
String
note
;
private
String
note
;
private
String
discussionId
;
private
String
type
;
private
NoteableType
noteableType
;
private
NoteableType
noteableType
;
private
Integer
authorId
;
private
Integer
authorId
;
private
Date
createdAt
;
private
Date
createdAt
;
...
@@ -160,6 +162,22 @@ public class NoteEvent extends AbstractEvent {
...
@@ -160,6 +162,22 @@ public class NoteEvent extends AbstractEvent {
this
.
note
=
note
;
this
.
note
=
note
;
}
}
public
String
getDiscussionId
()
{
return
discussionId
;
}
public
void
setDiscussionId
(
String
discussionId
)
{
this
.
discussionId
=
discussionId
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
NoteableType
getNoteableType
()
{
public
NoteableType
getNoteableType
()
{
return
noteableType
;
return
noteableType
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment