File tree Expand file tree Collapse file tree 6 files changed +43
-5
lines changed
slack-api-model/src/main/java/com/slack/api/model Expand file tree Collapse file tree 6 files changed +43
-5
lines changed Original file line number Diff line number Diff line change 5555 "file_id" : " F00000000" ,
5656 "is_empty" : false ,
5757 "quip_thread_id" : " "
58- }
58+ },
59+ "tabs" : [
60+ {
61+ "id" : " " ,
62+ "label" : " " ,
63+ "type" : " "
64+ }
65+ ]
5966 }
6067 },
6168 "warning" : " " ,
Original file line number Diff line number Diff line change 7878 "file_id" : " F00000000" ,
7979 "is_empty" : false ,
8080 "quip_thread_id" : " "
81- }
81+ },
82+ "tabs" : [
83+ {
84+ "id" : " " ,
85+ "label" : " " ,
86+ "type" : " "
87+ }
88+ ]
8289 }
8390 }
8491 ],
Original file line number Diff line number Diff line change @@ -102755,6 +102755,7 @@
102755102755 "ts": "0000000000.000000",
102756102756 "channel_name": "",
102757102757 "team_id": "T00000000",
102758+ "access": "",
102758102759 "share_user_id": "U00000000",
102759102760 "source": ""
102760102761 }
@@ -102777,6 +102778,7 @@
102777102778 "ts": "0000000000.000000",
102778102779 "channel_name": "",
102779102780 "team_id": "T00000000",
102781+ "access": "",
102780102782 "share_user_id": "U00000000",
102781102783 "source": ""
102782102784 }
@@ -102849,7 +102851,8 @@
102849102851 "sent_to_self": false,
102850102852 "bot_id": "B00000000",
102851102853 "editors": [
102852- ""
102854+ "",
102855+ "U00000000"
102853102856 ],
102854102857 "url_static_preview": "https://www.example.com/",
102855102858 "quip_thread_id": "",
Original file line number Diff line number Diff line change 8484 "ts": "0000000000.000000",
8585 "channel_name": "",
8686 "team_id": "T00000000",
87+ "access": "",
8788 "share_user_id": "U00000000",
8889 "source": ""
8990 }
106107 "ts": "0000000000.000000",
107108 "channel_name": "",
108109 "team_id": "T00000000",
110+ "access": "",
109111 "share_user_id": "U00000000",
110112 "source": ""
111113 }
178180 "sent_to_self": false,
179181 "bot_id": "B00000000",
180182 "editors": [
181- ""
183+ "",
184+ "U00000000"
182185 ],
183186 "url_static_preview": "https://www.example.com/",
184187 "quip_thread_id": "",
Original file line number Diff line number Diff line change 7777 "type" : [
7878 " "
7979 ]
80- }
80+ },
81+ "tabs" : [
82+ {
83+ "id" : " " ,
84+ "label" : " " ,
85+ "type" : " "
86+ }
87+ ]
8188 }
8289 }
8390 ],
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ public class ConversationProperties {
1919 private Boolean huddlesRestricted ;
2020 private Boolean atHereRestricted ;
2121 private Boolean atChannelRestricted ;
22+ private List <Tab > tabs ;
2223
2324 @ Data
2425 @ Builder
@@ -47,4 +48,14 @@ public static class Canvas {
4748 private String quipThreadId ;
4849 private Boolean isEmpty ;
4950 }
51+
52+ @ Data
53+ @ Builder
54+ @ NoArgsConstructor
55+ @ AllArgsConstructor
56+ public static class Tab {
57+ private String id ;
58+ private String label ;
59+ private Boolean type ;
60+ }
5061}
You can’t perform that action at this time.
0 commit comments