ENUM

VISITOR_STATUS

The status of a visitor to indicate its activity.

link GraphQL Schema definition

1enum VISITOR_STATUS {
2
3# The visitor is chatting actively.
4ACTIVE
5
6# The visitor has no chat activity for a while.
7IDLE
8
9# The visitor has gone offline.
10OFFLINE
11}