We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da504f commit 2fd93dbCopy full SHA for 2fd93db
3 files changed
json-logs/samples/api/usergroups.create.json
@@ -27,7 +27,8 @@
27
"channel_count": 12345,
28
"users": [
29
""
30
- ]
+ ],
31
+ "is_section": false
32
},
33
"error": "",
34
"needed": "",
json-logs/samples/api/usergroups.list.json
@@ -31,7 +31,8 @@
"",
"U00000000"
],
- "user_count": 12345
+ "user_count": 12345,
35
36
}
37
38
slack-api-model/src/main/java/com/slack/api/model/Usergroup.java
@@ -24,6 +24,8 @@ public class Usergroup {
24
private boolean usergroup;
25
@SerializedName("is_subteam")
26
private boolean subteam;
+ @SerializedName("is_section")
+ private boolean section;
private String name;
private String description;
private String handle;
0 commit comments