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

io.electrum.billpay.model.RefundResponse Maven / Gradle / Ivy

There is a newer version: 4.13.0
Show newest version
package io.electrum.billpay.model;

import io.electrum.vas.Utils;

import io.swagger.annotations.ApiModel;

/**
 * Represents a response to a payment request
 **/
@ApiModel(description = "Represents a response to a refund request")
public class RefundResponse extends BillpayResponse {

   @Override
   public String toString() {
      StringBuilder sb = new StringBuilder();
      sb.append("class RefundResponse {\n");

      sb.append("    thirdPartyIdentifiers: ").append(Utils.toIndentedString(thirdPartyIdentifiers)).append("\n");
      sb.append("    account: ").append(Utils.toIndentedString(account)).append("\n");
      sb.append("    customer: ").append(Utils.toIndentedString(customer)).append("\n");
      sb.append("}");
      return sb.toString();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy