OBJECT

WhisperPermissions

The ability for a Twitch user to send or receive Whispers to/from another Twitch user.

link GraphQL Schema definition

1type WhisperPermissions {
2
3# If send is NOT_PERMITTED, true if the reason is that the other Twitch user is
4# considered a stranger.
5isStrangerBlocked: Boolean!
6
7# Capability of the user to receive Whispers from the other Twitch user.
8receive: WhisperPermissionType
9
10# Capability of the user to send Whispers to the other Twitch user.
11send: WhisperPermissionType
12
13}