File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
json-logs/samples/audit/v1
slack-api-client/src/main/java/com/slack/api/audit/response Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 211211 "new_retention_policy" : {
212212 "type" : " " ,
213213 "duration_days" : 123
214- }
214+ },
215+ "who_can_post" : {},
216+ "can_thread" : {}
215217 }
216218 }
217219 ]
Original file line number Diff line number Diff line change @@ -221,6 +221,8 @@ public static class Details {
221221 private Boolean tokenRotationEnabledApp ; // app_scopes_expanded
222222 private MessageRetentionPolicy oldRetentionPolicy ; // channel_retention_changed
223223 private MessageRetentionPolicy newRetentionPolicy ; // channel_retention_changed
224+ private ConversationPref whoCanPost ; // channel_posting_permissions_updated
225+ private ConversationPref canThread ; // channel_posting_permissions_updated
224226 }
225227
226228 @ Data
@@ -277,4 +279,10 @@ public static class MessageRetentionPolicy {
277279 private Integer durationDays ;
278280 }
279281
282+ @ Data
283+ public static class ConversationPref {
284+ private List <String > type ;
285+ private List <String > user ;
286+ }
287+
280288}
You can’t perform that action at this time.
0 commit comments