File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
main/java/org/gitlab4j/api/models
test/resources/org/gitlab4j/api Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ public class User extends AbstractUser<User> {
24
24
private Date lastSignInAt ;
25
25
private String linkedin ;
26
26
private String location ;
27
+ private Long namespaceId ;
27
28
private String organization ;
28
29
private Boolean privateProfile ;
29
30
private Integer projectsLimit ;
@@ -166,6 +167,14 @@ public void setLocation(String location) {
166
167
this .location = location ;
167
168
}
168
169
170
+ public Long getNamespaceId () {
171
+ return namespaceId ;
172
+ }
173
+
174
+ public void setNamespaceId (Long namespaceId ) {
175
+ this .namespaceId = namespaceId ;
176
+ }
177
+
169
178
public String getOrganization () {
170
179
return organization ;
171
180
}
Original file line number Diff line number Diff line change 34
34
"external" : false ,
35
35
"private_profile" : false ,
36
36
"shared_runners_minutes_limit" : 133 ,
37
- "extra_shared_runners_minutes_limit" : 133
37
+ "extra_shared_runners_minutes_limit" : 133 ,
38
+ "namespace_id" : 1
38
39
}
You can’t perform that action at this time.
0 commit comments