File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
json-logs/samples/audit/v1
main/java/com/slack/api/audit/response
test/java/test_locally/api/audit Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 7575 ],
7676 "original_connected_channel_id" : " "
7777 },
78+ "message" : {
79+ "channel" : " " ,
80+ "team" : " " ,
81+ "timestamp" : " "
82+ },
7883 "huddle" : {
7984 "id" : " " ,
8085 "date_start" : 123 ,
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ public static class Entity {
5959 private Enterprise enterprise ;
6060 private File file ;
6161 private Channel channel ;
62+ private Message message ;
6263 private Huddle huddle ;
6364 private Role role ;
6465 private AccountTypeRole accountTypeRole ;
@@ -124,6 +125,13 @@ public static class Channel {
124125 private String originalConnectedChannelId ;
125126 }
126127
128+ @ Data
129+ public static class Message { // action: message_flagged
130+ private String channel ;
131+ private String team ;
132+ private String timestamp ;
133+ }
134+
127135 @ Data
128136 public static class Workflow {
129137 private String id ;
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ public void logs() throws Exception {
3939 "getFile" ,
4040 "getUsergroup" ,
4141 "getChannel" ,
42+ "getMessage" ,
4243 "getWorkspace" ,
4344 "getWorkflow" ,
4445 "getWorkflowV2" ,
You can’t perform that action at this time.
0 commit comments