All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.rbajek.rasa.sdk.dto.event.ActionExecutionRejected Maven / Gradle / Ivy

package io.github.rbajek.rasa.sdk.dto.event;

import lombok.Getter;

import java.sql.Timestamp;

@Getter
public class ActionExecutionRejected extends AbstractEvent {

    //-----------------------------------------------
    // Fields
    //-----------------------------------------------

    private String name;
    private String policy;
    private Float confidence;

    //-----------------------------------------------
    // Constructors
    //-----------------------------------------------

    public ActionExecutionRejected() {
        this(null);
    }

    public ActionExecutionRejected(Timestamp timestamp) {
        super("form_validation", timestamp);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy