Skip to content
Permalink
e8b09da827
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (18 sloc) 550 Bytes
package com.mobile.emvpay.models;
import java.math.BigDecimal;
public class TransactionDetails {
private String transactionId;
private BigDecimal checkoutTotal;
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public BigDecimal getCheckoutTotal() {
return checkoutTotal;
}
public void setCheckoutTotal(BigDecimal checkoutTotal) {
this.checkoutTotal = checkoutTotal;
}
}