ENUM

CSATRating

Possible ratings that the user can submit as part of their feedback.

link GraphQL Schema definition

1enum CSATRating {
2
3# The user selects "Very Dissatisfied".
4VERY_DISSATISFIED
5
6# The user selects "Somewhat Dissatisfied".
7SOMEWHAT_DISSATISFIED
8
9# The user selects "Neutral".
10NEUTRAL
11
12# The user selects "Somewhat Satisfied".
13SOMEWHAT_SATISFIED
14
15# The user selects "Very Satisfied".
16VERY_SATISFIED
17}