All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payu.sdk.api.model.report.ReportingResponseTransaction Maven / Gradle / Ivy

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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy