com.greenback.kit.model.TransactionExport Maven / Gradle / Ivy
package com.greenback.kit.model;
import java.util.List;
public class TransactionExport extends GreenbackObject {
protected String transactionId;
protected String accountId;
protected String triggeredBy;
protected TransactionExportMode mode;
protected AccountingMethod accountingMethod;
protected List steps;
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getTriggeredBy() {
return triggeredBy;
}
public void setTriggeredBy(String triggeredBy) {
this.triggeredBy = triggeredBy;
}
public TransactionExportMode getMode() {
return mode;
}
public void setMode(TransactionExportMode mode) {
this.mode = mode;
}
public AccountingMethod getAccountingMethod() {
return accountingMethod;
}
public void setAccountingMethod(AccountingMethod accountingMethod) {
this.accountingMethod = accountingMethod;
}
public List getSteps() {
return steps;
}
public void setSteps(List steps) {
this.steps = steps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy