StepTypeEnum
August 7, 2026 ยท View on GitHub
Type of the step
Example Usage
import co.novu.models.components.StepTypeEnum;
StepTypeEnum value = StepTypeEnum.IN_APP;
// Open enum: use .of() to create instances from custom string values
StepTypeEnum custom = StepTypeEnum.of("custom_value");
Values
| Name | Value |
|---|---|
IN_APP | in_app |
EMAIL | |
SMS | sms |
CHAT | chat |
PUSH | push |
TOOL | tool |
DIGEST | digest |
TRIGGER | trigger |
DELAY | delay |
THROTTLE | throttle |
CUSTOM | custom |
HTTP_REQUEST | http_request |