com.global.api.gateways.GatewayResponse 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.gateways;
public class GatewayResponse {
private int statusCode;
private String rawResponse;
public int getStatusCode() {
return statusCode;
}
public void setStatusCode(int statusCode) {
this.statusCode = statusCode;
}
public String getRawResponse() {
return rawResponse;
}
public void setRawResponse(String rawResponse) {
this.rawResponse = rawResponse;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy