Skip to content

Session Status Enum Reference

The NjoguAmos\Waha\Enums\SessionStatus enum represents the possible statuses of a WhatsApp session.

Cases

CaseValueDescription
STOPPEDSTOPPEDThe session is stopped.
STARTINGSTARTINGThe session is starting.
SCAN_QR_CODESCAN_QR_CODEThe session requires a QR code scan or login via phone number.
WORKINGWORKINGThe session is working and ready to use.
FAILEDFAILEDThe session failed due to an error.

Usage

php
use NjoguAmos\Waha\Enums\SessionStatus;

if ($session->status === SessionStatus::WORKING) {
    // Session is ready
}

Released under the MIT License.