1 | type NotificationTemplate { |
2 | |
3 | id: ID! |
4 | |
5 | eventName: String! |
6 | |
7 | eventType: String! |
8 | |
9 | title: String! |
10 | |
11 | body: String! |
12 | |
13 | ownerOrganizationId: ID! |
14 | |
15 | ownerApplicationId: String! |
16 | |
17 | applicationId: String |
18 | |
19 | mailboxId: ID |
20 | |
21 | createdDateTime: DateTime |
22 | |
23 | updatedDateTime: DateTime |
24 | |
25 | } |