![JAR search and dependency download from the Maven repository](/logo.png)
io.electrum.billpay.model.RefundResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of billpay-service-interface Show documentation
Show all versions of billpay-service-interface Show documentation
Bill Payments Service Interface
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