Skip to content

App Type

NjoguAmos\Waha\Enums\AppType

The AppType enum defines the types of applications available to connect in WAHA.

Cases

CaseValueLabelDescription
CHATWOOTchatwootChatWootUse your WhatsApp in ChatWoot CRM.
CALLScallsCallsAutomatically reject calls and auto-reply with a message.

Methods

label()

Returns the human-readable label for the app type.

description()

Returns a brief description of the app type.

Usage

php
use NjoguAmos\Waha\Enums\AppType;

$type = AppType::CHATWOOT;

echo $type->value; // 'chatwoot'
echo $type->label(); // 'ChatWoot'
echo $type->description(); // 'Use your WhatsApp in ChatWoot CRM'

References

Released under the MIT License.