com.payu.sdk.api.model.report.ReportingResultTransaction 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.report;
import com.payu.sdk.api.model.TransactionResponse;
public class ReportingResultTransaction {
private TransactionResponse payload;
public TransactionResponse getPayload() {
return payload;
}
public void setPayload(TransactionResponse payload) {
this.payload = payload;
}
}