forked from slackapi/java-slack-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMatchedItem.java
More file actions
286 lines (236 loc) · 7.59 KB
/
MatchedItem.java
File metadata and controls
286 lines (236 loc) · 7.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
package com.slack.api.model;
import com.google.gson.annotations.SerializedName;
import com.slack.api.model.block.LayoutBlock;
import lombok.AccessLevel;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
import java.util.Map;
@Data
public class MatchedItem {
private String iid;
private String id;
private String team;
private String type;
private Channel channel;
private String user;
private String username;
private String ts;
private String title;
private String text;
private String fileAccess;
private List<File> files;
private List<Attachment> attachments;
private Integer originalAttachmentCount;
private List<LayoutBlock> blocks;
private String permalink;
private String name;
private String subject;
private String preview;
private String plainText;
private String previewPlainText;
private Map<String, String> headers;
private boolean hasMore;
private boolean sentToSelf;
private boolean noReactions;
private String botId;
private String userTeam;
private String sourceTeam;
private String fileId;
private String externalId;
private String externalUrl;
private String timestamp;
private String created;
@SerializedName("is_intro")
@Getter(AccessLevel.NONE)
@Setter(AccessLevel.NONE)
private boolean intro;
@SerializedName("is_public")
@Getter(AccessLevel.NONE)
@Setter(AccessLevel.NONE)
private boolean _public;
public boolean isPublic() {
return _public;
}
public void setPublic(boolean isPublic) {
this._public = isPublic;
}
private boolean publicUrlShared;
@SerializedName("is_restricted_sharing_enabled")
private boolean restrictedSharingEnabled;
private boolean canvasPrintingEnabled;
private String urlPrivate;
private boolean urlPrivateDownload;
private String urlStaticPreview;
private boolean permalinkPublic;
private String editLink;
private String previewHighlight;
private Integer lines;
private Integer linesMore;
@SerializedName("preview_is_truncated")
private boolean previewTruncated;
private boolean hasRichPreview;
private String mediaDisplayType;
@SerializedName("is_channel_space")
private boolean channelSpace;
private String linkedChannelId;
private String mimetype;
private String filetype;
private String prettyType;
@SerializedName("is_mpim")
private boolean mpim;
@SerializedName("is_external")
private boolean external;
@SerializedName("is_starred")
private boolean starred;
private String externalType;
private boolean editable;
private boolean nonOwnerEditable; // application/vnd.slack-docs
private String editor; // application/vnd.slack-docs
private String lastEditor; // application/vnd.slack-docs
private Integer updated; // application/vnd.slack-docs
private boolean displayAsBot;
private Integer size;
private String mode;
private String comment;
private Integer commentsCount;
@SerializedName("previous_2")
private OtherItem previous2;
private OtherItem previous;
private OtherItem next;
@SerializedName("next_2")
private OtherItem next2;
private File.Shares shares;
private Boolean hasMoreShares;
private List<String> channels;
private List<String> groups;
private List<String> ims;
@SerializedName("thumb_64")
private String thumb64;
@SerializedName("thumb_64_gif")
private String thumb64Gif;
@SerializedName("thumb_64_w")
private String thumb64Width;
@SerializedName("thumb_64_h")
private String thumb64Height;
@SerializedName("thumb_80")
private String thumb80;
@SerializedName("thumb_80_gif")
private String thumb80Gif;
@SerializedName("thumb_80_w")
private String thumb80Width;
@SerializedName("thumb_80_h")
private String thumb80Height;
@SerializedName("thumb_160")
private String thumb160;
@SerializedName("thumb_160_gif")
private String thumb160Gif;
@SerializedName("thumb_160_w")
private String thumb160Width;
@SerializedName("thumb_160_h")
private String thumb160Height;
@SerializedName("thumb_360")
private String thumb360;
@SerializedName("thumb_360_gif")
private String thumb360Gif;
@SerializedName("thumb_360_w")
private String thumb360Width;
@SerializedName("thumb_360_h")
private String thumb360Height;
@SerializedName("thumb_480")
private String thumb480;
@SerializedName("thumb_480_gif")
private String thumb480Gif;
@SerializedName("thumb_480_w")
private String thumb480Width;
@SerializedName("thumb_480_h")
private String thumb480Height;
@SerializedName("thumb_720")
private String thumb720;
@SerializedName("thumb_720_gif")
private String thumb720Gif;
@SerializedName("thumb_720_w")
private String thumb720Width;
@SerializedName("thumb_720_h")
private String thumb720Height;
@SerializedName("thumb_800")
private String thumb800;
@SerializedName("thumb_800_gif")
private String thumb800Gif;
@SerializedName("thumb_800_w")
private String thumb800Width;
@SerializedName("thumb_800_h")
private String thumb800Height;
@SerializedName("thumb_960")
private String thumb960;
@SerializedName("thumb_960_gif")
private String thumb960Gif;
@SerializedName("thumb_960_w")
private String thumb960Width;
@SerializedName("thumb_960_h")
private String thumb960Height;
@SerializedName("thumb_1024")
private String thumb1024;
@SerializedName("thumb_1024_gif")
private String thumb1024Gif;
@SerializedName("thumb_1024_w")
private String thumb1024Width;
@SerializedName("thumb_1024_h")
private String thumb1024Height;
private String thumbTiny;
private String thumbVideo;
private String convertedPdf;
private String thumbPdf;
@SerializedName("thumb_pdf_w")
private String thumbPdfWidth;
@SerializedName("thumb_pdf_h")
private String thumbPdfHeight;
private Integer imageExifRotation;
@SerializedName("original_w")
private String originalWidth;
@SerializedName("original_h")
private String originalHeight;
private String score;
private boolean topFile;
private String deanimate;
private String deanimateGif;
private String channelActionsTs;
private Integer channelActionsCount;
private List<String> editors;
@Data
public static class OtherItem {
private String iid;
private String type;
private String user;
private String username;
private String ts;
private String text;
private List<Attachment> attachments;
private List<LayoutBlock> blocks;
private String permalink;
}
private List<Address> to;
private List<Address> from;
private List<Address> cc;
@Data
public static class Address {
private String address;
private String name;
private String original;
}
private String quipThreadId;
private String access;
private Integer updateNotification;
private Integer privateChannelsWithFileAccessCount;
private Integer privateFileWithAccessCount;
private List<File.UserWithFileAccess> dmMpdmUsersWithFileAccess;
private List<String> teamsSharedWith;
private String orgOrWorkspaceAccess;
private Boolean teamPrefVersionHistoryEnabled;
private Integer editorsCount;
private List<LayoutBlock> titleBlocks;
private Double canvasReadtime;
private String canvasCreatorId;
private String altTxt;
}