File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/main/java/org/gitlab4j/api/models Expand file tree Collapse file tree 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 {
77
88 private String text ;
99 private boolean gfm ;
10+ private String project ;
1011
1112 public MarkdownRequest (String text , boolean gfm ) {
1213 this .text = text ;
1314 this .gfm = gfm ;
1415 }
1516
17+ public MarkdownRequest (String text , boolean gfm , String project ) {
18+ this .text = text ;
19+ this .gfm = gfm ;
20+ this .project = project ;
21+ }
22+
1623 public String getText () {
1724 return text ;
1825 }
@@ -28,4 +35,12 @@ public boolean isGfm() {
2835 public void setGfm (boolean gfm ) {
2936 this .gfm = gfm ;
3037 }
38+
39+ public String getProject () {
40+ return project ;
41+ }
42+
43+ public void setProject (String project ) {
44+ this .project = project ;
45+ }
3146}
You can’t perform that action at this time.
0 commit comments