![JAR search and dependency download from the Maven repository](/logo.png)
com.payu.sdk.api.model.TransactionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model;
public class TransactionResponse {
private TransactionState state;
private String paymentNetworkResponseCode;
private String paymentNetworkResponseErrorMessage;
public TransactionState getState() {
return state;
}
public void setState(TransactionState state) {
this.state = state;
}
public String getPaymentNetworkResponseCode() {
return paymentNetworkResponseCode;
}
public void setPaymentNetworkResponseCode(String paymentNetworkResponseCode) {
this.paymentNetworkResponseCode = paymentNetworkResponseCode;
}
public String getPaymentNetworkResponseErrorMessage() {
return paymentNetworkResponseErrorMessage;
}
public void setPaymentNetworkResponseErrorMessage(String paymentNetworkResponseErrorMessage) {
this.paymentNetworkResponseErrorMessage = paymentNetworkResponseErrorMessage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy