com.global.api.terminals.abstractions.IEODResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.terminals.abstractions;
import com.global.api.terminals.upa.Entities.Enums.UpaMessageId;
public interface IEODResponse extends IDeviceResponse {
IDeviceResponse getAttachmentResponse();
IDeviceResponse getBatchCloseResponse();
IBatchReportResponse getBatchReportResponse();
IDeviceResponse getEmvOfflineDeclineResponse();
IDeviceResponse getEmvPDLResponse();
IDeviceResponse getEmvTransactionCertificateResponse();
IDeviceResponse getHeartBeatResponse();
IDeviceResponse getReversalResponse();
ISAFResponse getSAFResponse();
String getBatchId();
UpaMessageId getMessageId();
String getResponseCode();
String getAttachmentResponseText();
String getBatchCloseResponseText();
String getEmvOfflineDeclineResponseText();
String getEmvPDLResponseText();
String getEmvTransactionCertificateResponseText();
String getHeartBeatResponseText();
String getReversalResponseText();
String getSafResponseText();
}