ENUM

VideoCommentState

Represents the state of a video comment.

link GraphQL Schema definition

1enum VideoCommentState {
2
3# The comment is published.
4PUBLISHED
5
6# The comment was manually unpublished by a mod or the channel owner.
7UNPUBLISHED
8
9# The comment was automatically flagged for review (AutoMod).
10PENDING_REVIEW
11
12# The comment is possibly spam and has to be reviewed by a moderator.
13PENDING_REVIEW_SPAM
14
15# The comment has been soft-deleted.
16DELETED
17}