OBJECT

SendRoomMessageError

link GraphQL Schema definition

1type SendRoomMessageError {
2
3code: SendRoomMessageErrorCode!
4
5# On SLOW_MODE_ENFORCEMENT_FAILED, USER_CHAT_TIMED_OUT: the number of remaining
6# seconds user must wait before sending another message.
7remainingDurationSeconds: Int
8
9# On SLOW_MODE_ENFORCEMENT_FAILED: the number of seconds users must wait in
10# between sending messages.
11slowModeDurationSeconds: Int
12
13}