We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d327e3 commit 192be8bCopy full SHA for 192be8b
src/main/java/org/gitlab4j/api/models/User.java
@@ -8,6 +8,7 @@
8
public class User extends AbstractUser<User> {
9
10
private String bio;
11
+ private Boolean bot;
12
private Boolean canCreateGroup;
13
private Boolean canCreateProject;
14
private Integer colorSchemeId;
@@ -45,6 +46,14 @@ public void setBio(String bio) {
45
46
this.bio = bio;
47
}
48
49
+ public Boolean getBot() {
50
+ return bot;
51
+ }
52
+
53
+ public void setBot(Boolean bot) {
54
+ this.bot = bot;
55
56
57
public Boolean getCanCreateGroup() {
58
return canCreateGroup;
59
0 commit comments