ENUM

CSATActionPrompted

Possible values of actionPrompted in SubmitCSATFeedbackInput.

link GraphQL Schema definition

1enum CSATActionPrompted {
2
3# The user registers their client app (i.e. save information for an app), in their
4# personal console.
5CLIENT_APP_REGISTER
6
7# The user creates a new drop campaign.
8DROP_CREATE_CAMPAIGN
9
10# The user moves a drop's state to active.
11DROP_MOVE_STATE_TO_ACTIVE
12
13# The user move's a drop's state to testing.
14DROP_MOVE_STATE_TO_TESTING
15
16# The user creates a new extension.
17EXTENSION_CREATE
18
19# The user changes the state of an extension.
20EXTENSION_STATE_CHANGE
21
22# The user views the analytics page of their game.
23GAMES_VIEW_ANALYTICS
24
25# The user submits box art for their game.
26GAMES_SUBMIT_BOX_ART
27
28# The user creates a new organization.
29ORGANIZATION_CREATE
30
31# The user adds another user to their organization.
32ORGANIZATION_ADD_USER
33}