File tree Expand file tree Collapse file tree 5 files changed +64
-3
lines changed
slack-api-model/src/main/java/com/slack/api/model Expand file tree Collapse file tree 5 files changed +64
-3
lines changed Original file line number Diff line number Diff line change 100100 "label" : " " ,
101101 "type" : " "
102102 }
103+ ],
104+ "tabz" : [
105+ {
106+ "id" : " " ,
107+ "label" : " " ,
108+ "type" : " "
109+ }
103110 ]
104111 }
105112 }
Original file line number Diff line number Diff line change 6262 "label" : " " ,
6363 "type" : " "
6464 }
65+ ],
66+ "tabz" : [
67+ {
68+ "id" : " " ,
69+ "label" : " " ,
70+ "type" : " "
71+ }
6572 ]
6673 }
6774 },
Original file line number Diff line number Diff line change 6262 " "
6363 ],
6464 "user" : [
65- " W00000000" ,
66- " U00000000"
65+ " W00000000"
6766 ]
6867 },
6968 "threads_restricted_to" : {
8584 "label" : " " ,
8685 "type" : " "
8786 }
87+ ],
88+ "tabz" : [
89+ {
90+ "id" : " " ,
91+ "label" : " " ,
92+ "type" : " "
93+ }
8894 ]
8995 }
9096 }
Original file line number Diff line number Diff line change 8484 "label" : " " ,
8585 "type" : " "
8686 }
87+ ],
88+ "tabz" : [
89+ {
90+ "id" : " " ,
91+ "label" : " " ,
92+ "type" : " "
93+ }
8794 ]
8895 }
8996 }
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ public class ConversationProperties {
2020 private Boolean atHereRestricted ;
2121 private Boolean atChannelRestricted ;
2222 private List <Tab > tabs ;
23+ private List <Tabz > tabz ;
2324
2425 @ Data
2526 @ Builder
@@ -56,6 +57,39 @@ public static class Canvas {
5657 public static class Tab {
5758 private String id ;
5859 private String label ;
59- private Boolean type ;
60+ private String type ;
61+ private TabData data ;
62+ private Boolean isDisabled ;
63+ }
64+
65+ @ Data
66+ @ Builder
67+ @ NoArgsConstructor
68+ @ AllArgsConstructor
69+ public static class Tabz {
70+ private String id ;
71+ private String label ;
72+ private String type ;
73+ private TabData data ;
74+ private Boolean isDisabled ;
75+ }
76+
77+ @ Data
78+ @ Builder
79+ @ NoArgsConstructor
80+ @ AllArgsConstructor
81+ public static class TabData {
82+ private String fileId ;
83+ private String viewId ;
84+ private String accessLevel ;
85+ private String sharedTs ;
86+ private String recordRelatedListId ;
87+ private String salesforceListViewId ;
88+ private String listsChannelTabDefaultRefineViewId ;
89+ private String objectType ;
90+ private String folderBookmarkId ;
91+ private String botUserId ;
92+ private String appId ;
93+ private Boolean muteEditUpdates ;
6094 }
6195}
You can’t perform that action at this time.
0 commit comments