ChannelTypeEnum
August 7, 2026 ยท View on GitHub
Channel type through which the message is sent
Example Usage
import co.novu.models.components.ChannelTypeEnum;
ChannelTypeEnum value = ChannelTypeEnum.IN_APP;
// Open enum: use .of() to create instances from custom string values
ChannelTypeEnum custom = ChannelTypeEnum.of("custom_value");
Values
| Name | Value |
|---|---|
IN_APP | in_app |
EMAIL | |
SMS | sms |
CHAT | chat |
PUSH | push |
TOOL | tool |