OBJECT

RemoveEditorPayload

RemoveEditorPayload is the response after attempting to revoke the editor status of a user.

link GraphQL Schema definition

1type RemoveEditorPayload {
2
3# The channel for which the editor status of the target user is removed.
4channel: User
5
6# The client error that has occurred.
7# Null if the operation is successful.
8error: RemoveEditorError
9
10# The user whose editor status was revoked.
11targetUser: User
12
13}