OBJECT

SendCheerValidationError

Resolver for validation errors that occur on send cheer.

link GraphQL Schema definition

1type SendCheerValidationError {
2
3# Error code that describes the validation error.
4code: SendCheerValidationErrorCode!
5
6# Error message that is returned from the backend service.
7message: String!
8
9# Optional rejected message for when the error requires frontend message changes,
10# like AutoMod'd messages.
11messageContent: RoomMessageContent
12
13}