org.camunda.feel.playground.dto.FeelUnaryTestsEvaluationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feel-scala-playground Show documentation
Show all versions of feel-scala-playground Show documentation
The API for the FEEL-Scala Playground
package org.camunda.feel.playground.dto;
import java.util.Map;
public class FeelUnaryTestsEvaluationRequest {
public String expression;
public Object inputValue;
public Map context;
public Map metadata;
public String getExpression() {
return expression;
}
public void setExpression(final String expression) {
this.expression = expression;
}
public Map getContext() {
return context;
}
public void setContext(final Map context) {
this.context = context;
}
public Map getMetadata() {
return metadata;
}
public void setMetadata(final Map metadata) {
this.metadata = metadata;
}
public Object getInputValue() {
return inputValue;
}
public void setInputValue(final Object inputValue) {
this.inputValue = inputValue;
}
@Override
public String toString() {
return "FeelUnaryTestsEvaluationRequest{"
+ "expression='"
+ expression
+ '\''
+ ", inputValue="
+ inputValue
+ ", context="
+ context
+ ", metadata="
+ metadata
+ '}';
}
}