com.hps.integrator.abstractions.IHpsReportTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secure-submit Show documentation
Show all versions of secure-submit Show documentation
The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway
package com.hps.integrator.abstractions;
import com.hps.integrator.entities.credit.HpsCreditExceptions;
import com.hps.integrator.entities.HpsTransactionType;
import java.util.Date;
public interface IHpsReportTransaction {
int getOriginalTransactionId();
void setOriginalTransactionId(int originalTransactionId);
String getMaskedCardNumber();
void setMaskedCardNumber(String maskedCardNumber);
HpsTransactionType getTransactionType();
void setTransactionType(HpsTransactionType transactionType);
Date getTransactionDate();
void setTransactionDate(Date transactionDate);
HpsCreditExceptions getExceptions();
void setExceptions(HpsCreditExceptions exceptions);
}