Skip to content

Presence Enum Reference

The NjoguAmos\Waha\Enums\Presence enum defines the available presence statuses on WhatsApp.

php
use NjoguAmos\Waha\Enums\Presence;

Presence::ONLINE;    // 'online'
Presence::OFFLINE;   // 'offline'
Presence::TYPING;    // 'typing'
Presence::RECORDING; // 'recording'
Presence::PAUSED;    // 'paused'

Cases

CaseValueDescription
ONLINEonlineUser is online
OFFLINEofflineUser is offline
TYPINGtypingUser is typing
RECORDINGrecordingUser is recording an audio
PAUSEDpausedUser has paused typing/recording

Released under the MIT License.