ENUM

RecommendationFeedbackCategory

Reason for feedback.

link GraphQL Schema definition

1enum RecommendationFeedbackCategory {
2
3# Only returned when there is an issue. Shouldn't be returned, should not be used
4# for fetching.
5UNSPECIFIED
6
7# The user is not interested in this type of content.
8NOT_INTERESTED
9
10# The user finds this type of content to be offensive.
11OFFENSIVE
12
13# The user has already seen this content.
14ALREADY_WATCHED
15
16# Used when the other reasons do not capture the reason a user is giving feedback.
17OTHER
18}