File tree 1 file changed +15
-0
lines changed
src/main/java/org/gitlab4j/api/models
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,19 @@ public class MarkdownRequest implements Serializable {
7
7
8
8
private String text ;
9
9
private boolean gfm ;
10
+ private String project ;
10
11
11
12
public MarkdownRequest (String text , boolean gfm ) {
12
13
this .text = text ;
13
14
this .gfm = gfm ;
14
15
}
15
16
17
+ public MarkdownRequest (String text , boolean gfm , String project ) {
18
+ this .text = text ;
19
+ this .gfm = gfm ;
20
+ this .project = project ;
21
+ }
22
+
16
23
public String getText () {
17
24
return text ;
18
25
}
@@ -28,4 +35,12 @@ public boolean isGfm() {
28
35
public void setGfm (boolean gfm ) {
29
36
this .gfm = gfm ;
30
37
}
38
+
39
+ public String getProject () {
40
+ return project ;
41
+ }
42
+
43
+ public void setProject (String project ) {
44
+ this .project = project ;
45
+ }
31
46
}
You can’t perform that action at this time.
0 commit comments