Presence Data DTO Reference
The NjoguAmos\Waha\Dto\PresenceData represents a presence update.
php
use NjoguAmos\Waha\Enums\Presence;
use NjoguAmos\Waha\Dto\PresenceData;
$presenceData = new PresenceData(
presence: Presence::ONLINE,
chatId: '[email protected]'
);presence → Presence
The presence status to set.
php
$presenceData->presence; // Presence::ONLINEchatId → string or null
The chat ID to set the presence for. This is required for Presence::TYPING, Presence::RECORDING, and Presence::PAUSED.
php
$presenceData->chatId; // "[email protected]"