com.didiglobal.turbo.engine.model.FlowModel Maven / Gradle / Ivy
package com.didiglobal.turbo.engine.model;
import com.google.common.base.MoreObjects;
import java.util.List;
public class FlowModel {
private List flowElementList;
public List getFlowElementList() {
return flowElementList;
}
public void setFlowElementList(List flowElementList) {
this.flowElementList = flowElementList;
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("flowElementList", flowElementList)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy