Skip to content

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]'
);

presencePresence

The presence status to set.

php
$presenceData->presence; // Presence::ONLINE

chatIdstring 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]"

Released under the MIT License.