File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
main/java/com/slack/api/methods/response/admin/users
test/java/test_with_remote_apis/methods Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ public static class User {
2626 private String id ;
2727 private String email ;
2828 private String username ;
29+ private String fullName ;
2930 @ SerializedName ("is_admin" )
3031 private boolean admin ;
3132 @ SerializedName ("is_owner" )
@@ -38,6 +39,9 @@ public static class User {
3839 private boolean ultraRestricted ;
3940 @ SerializedName ("is_bot" )
4041 private boolean bot ;
42+ @ SerializedName ("is_active" )
43+ private boolean active ;
4144 private Long expirationTs ;
45+ private Integer dateCreated ;
4246 }
4347}
Original file line number Diff line number Diff line change @@ -972,7 +972,7 @@ public void filesUploadV2_two_files() throws Exception {
972972 int count = 0 ;
973973 ConversationsHistoryResponse history = null ;
974974 List <String > actualFileIds = null ;
975- while (count < 10 ) {
975+ while (count < 20 ) {
976976 count ++;
977977 history = client .conversationsHistory (r -> r
978978 .channel (randomChannelId )
You can’t perform that action at this time.
0 commit comments