Skip to content

Commit dcc9b69

Browse files
committed
update view_submission properties
1 parent e01e566 commit dcc9b69

File tree

1 file changed

+13
-1
lines changed
  • slack-api-model/src/main/java/com/slack/api/model/view

1 file changed

+13
-1
lines changed

slack-api-model/src/main/java/com/slack/api/model/view/View.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)