it.auties.whatsapp.api.DisconnectReason Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
The newest version!
package it.auties.whatsapp.api;
/**
* The constants of this enumerated type describe the various reasons for which a session can be
* terminated
*/
public enum DisconnectReason {
/**
* Default errorReason
*/
DISCONNECTED,
/**
* Reconnect
*/
RECONNECTING,
/**
* Logged out
*/
LOGGED_OUT,
/**
* Session restore
*/
RESTORE
}