ENUM

WhisperPermissionType

An enumeration of the permissions for one user to Whisper another.

link GraphQL Schema definition

1enum WhisperPermissionType {
2
3# The sender is allowed to Whisper the recipient.
4PERMITTED
5
6# The sender is not allowed to Whisper the recipient.
7NOT_PERMITTED
8
9# Any sender is able to Whisper the recipient.
10NOT_RESTRICTED
11
12# The sender is temporarily allowed to Whisper the recipient.
13TEMPORARY
14}