com.greenback.kit.model.TransactionExportIntent Maven / Gradle / Ivy
package com.greenback.kit.model;
import java.util.List;
public class TransactionExportIntent {
private String targetId;
private Form form;
private List matches;
public String getTargetId() {
return targetId;
}
public void setTargetId(String targetId) {
this.targetId = targetId;
}
public Form getForm() {
return form;
}
public void setForm(Form form) {
this.form = form;
}
public List getMatches() {
return matches;
}
public void setMatches(List matches) {
this.matches = matches;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy