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