ENUM

SendWhisperErrorCode

Possible errors returned by the sendWhisper mutation.

link GraphQL Schema definition

1enum SendWhisperErrorCode {
2
3# Target is banned.
4TARGET_BANNED
5
6# Message body is empty.
7BODY_EMPTY
8
9# Target's settings prevent them from receiving message.
10TARGET_RESTRICTED
11
12# Sender does not have a verified account.
13SENDER_NOT_VERIFIED
14
15# Whisper was not delivered for an unspecified reason.
16NOT_DELIVERED
17}