OBJECT

InboxFileAttachment

link GraphQL Schema definition

1type InboxFileAttachment {
2
3assetId: String!
4
5createdOn: Int!
6
7# File attachment extension, e.g. jpg
8extension: String
9
10messageId: Int!
11
12# File attachment MIME type, e.g. image/jpeg
13mimeType: String!
14
15renditionUrl: String!
16
17size: Int!
18
19sourceHeight: Int!
20
21sourceWidth: Int!
22
23threadId: Int!
24
25title: String!
26
27userId: Int!
28
29}