io.github.rbajek.rasa.sdk.dto.event.UserUtteranceReverted 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 java.sql.Timestamp;
public class UserUtteranceReverted extends AbstractEvent {
//-----------------------------------------------
// Constructors
//-----------------------------------------------
public UserUtteranceReverted() {
this(null);
}
public UserUtteranceReverted(Timestamp timestamp) {
super("rewind", timestamp);
}
}