File tree Expand file tree Collapse file tree 5 files changed +53
-5
lines changed
slack-api-model/src/main/java/com/slack/api/model/view Expand file tree Collapse file tree 5 files changed +53
-5
lines changed Original file line number Diff line number Diff line change 39593959 "previous_view_id" : " " ,
39603960 "app_id" : " " ,
39613961 "app_installed_team_id" : " " ,
3962- "bot_id" : " "
3962+ "bot_id" : " " ,
3963+ "entity_url" : " " ,
3964+ "external_ref" : {
3965+ "id" : " " ,
3966+ "type" : " "
3967+ },
3968+ "app_unfurl_url" : " " ,
3969+ "message_ts" : " " ,
3970+ "thread_ts" : " " ,
3971+ "channel" : " "
39633972 },
39643973 "response_metadata" : {
39653974 "messages" : [
Original file line number Diff line number Diff line change 39593959 "previous_view_id" : " " ,
39603960 "app_id" : " " ,
39613961 "app_installed_team_id" : " " ,
3962- "bot_id" : " "
3962+ "bot_id" : " " ,
3963+ "entity_url" : " " ,
3964+ "external_ref" : {
3965+ "id" : " " ,
3966+ "type" : " "
3967+ },
3968+ "app_unfurl_url" : " " ,
3969+ "message_ts" : " " ,
3970+ "thread_ts" : " " ,
3971+ "channel" : " "
39633972 },
39643973 "response_metadata" : {
39653974 "messages" : [
Original file line number Diff line number Diff line change 39593959 "previous_view_id" : " " ,
39603960 "app_id" : " " ,
39613961 "app_installed_team_id" : " " ,
3962- "bot_id" : " "
3962+ "bot_id" : " " ,
3963+ "entity_url" : " " ,
3964+ "external_ref" : {
3965+ "id" : " " ,
3966+ "type" : " "
3967+ },
3968+ "app_unfurl_url" : " " ,
3969+ "message_ts" : " " ,
3970+ "thread_ts" : " " ,
3971+ "channel" : " "
39633972 },
39643973 "response_metadata" : {
39653974 "messages" : [
Original file line number Diff line number Diff line change 39593959 "previous_view_id" : " " ,
39603960 "app_id" : " " ,
39613961 "app_installed_team_id" : " " ,
3962- "bot_id" : " "
3962+ "bot_id" : " " ,
3963+ "entity_url" : " " ,
3964+ "external_ref" : {
3965+ "id" : " " ,
3966+ "type" : " "
3967+ },
3968+ "app_unfurl_url" : " " ,
3969+ "message_ts" : " " ,
3970+ "thread_ts" : " " ,
3971+ "channel" : " "
39633972 },
39643973 "response_metadata" : {
39653974 "messages" : [
Original file line number Diff line number Diff line change @@ -32,11 +32,23 @@ public class View {
3232 private ViewState state ;
3333 private String hash ;
3434 private Boolean clearOnClose ; // must be nullable for App Home
35- private Boolean notifyOnClose ; // must be nullable for App Home
35+ private Boolean notifyOnClose ; // must be nullable for App Home
3636 private Boolean submitDisabled ; // workflow_step
3737 private String rootViewId ;
3838 private String previousViewId ; // views.update
3939 private String appId ;
4040 private String appInstalledTeamId ; // workflow_step
4141 private String botId ;
42+ private String entityUrl ;
43+ private ExternalRef externalRef ;
44+ private String appUnfurlUrl ;
45+ private String messageTs ;
46+ private String threadTs ;
47+ private String channel ;
48+
49+ @ Data
50+ public static class ExternalRef {
51+ private String id ;
52+ private String type ;
53+ }
4254}
You can’t perform that action at this time.
0 commit comments