it.auties.whatsapp.model.companion.CompanionLinkResult 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
package it.auties.whatsapp.model.companion;
/**
* The constants of this enumeration describe the various types of results that can be yielded by a new device's registration through the mobile api
*/
public enum CompanionLinkResult {
/**
* The device was successfully linked
*/
SUCCESS,
/**
* The limit of devices, as of now four, has already been reached
*/
MAX_DEVICES_ERROR,
/**
* The device couldn't be linked because of an unknown error
* This usually means that the qr code is no longer valid
*/
RETRY_ERROR
}