Payment.java
Home
/
sm-core /
src /
main /
java /
com /
salesmanager /
core /
business /
payments /
model /
Payment.java
package com.salesmanager.core.business.payments.model;
import com.salesmanager.core.business.reference.currency.model.Currency;
public class Payment {
private PaymentType paymentType;
private TransactionType transactionType = TransactionType.AUTHORIZECAPTURE;
private String moduleName;
private Currency currency;
public void setPaymentType(PaymentType paymentType) {
this.paymentType = paymentType;
}
public PaymentType getPaymentType() {
return paymentType;
}
public void setTransactionType(TransactionType transactionType) {
this.transactionType = transactionType;
}
public TransactionType getTransactionType() {
return transactionType;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
}
public String getModuleName() {
return moduleName;
}
public Currency getCurrency() {
return currency;
}
public void setCurrency(Currency currency) {
this.currency = currency;
}
}