io.github.rbajek.rasa.sdk.dto.event.FollowupAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rasa-java-sdk Show documentation
Show all versions of rasa-java-sdk Show documentation
Java SDK for the development of custom actions for Rasa
package io.github.rbajek.rasa.sdk.dto.event;
import lombok.Getter;
import java.sql.Timestamp;
@Getter
public class FollowupAction extends AbstractEvent {
//-----------------------------------------------
// Fields
//-----------------------------------------------
private String name;
//-----------------------------------------------
// Constructors
//-----------------------------------------------
public FollowupAction() {
this(null);
}
public FollowupAction(Timestamp timestamp) {
super("followup", timestamp);
}
}