com.global.api.entities.billing.BillingResponse 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.entities.billing;
public class BillingResponse {
/**
* Indicates if the action was succesful
*/
protected boolean isSuccessful;
/**
* The response code from the Billing Gateway
*/
protected String responseCode;
/**
* The response message from the Billing Gateway
*/
protected String responseMessage;
public boolean isSuccessful() {
return isSuccessful;
}
public String getResponseCode() {
return responseCode;
}
public String getResponseMessage() {
return responseMessage;
}
public void setIsSuccessful(boolean isSuccessful) {
this.isSuccessful = isSuccessful;
}
public void setResponseCode(String responseCode) {
this.responseCode = responseCode;
}
public void setResponseMessage(String responseMessage) {
this.responseMessage = responseMessage;
}
}