com.payu.sdk.api.model.report.ReportingResponseTransaction 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;
import com.payu.sdk.api.model.response.Response;
import static com.payu.sdk.base.Preconditions.isNull;
public class ReportingResponseTransaction extends Response {
private ReportingResultTransaction result;
public TransactionResponse getTransactionResponse() {
return isNull(this.result) ? null : this.result.getPayload();
}
}