OBJECT

OnsiteNotificationAction

link GraphQL Schema definition

1type OnsiteNotificationAction {
2
3# Body of the notification action in plain text.
4body: String!
5
6# ID of the action.
7id: ID!
8
9# Label of the action.
10label: String!
11
12# ID of the modal that will open on click, if it is a modal CTA.
13modalID: ID!
14
15# Type of the notification action.
16type: String!
17
18# URL of the notification action.
19url: String!
20
21}