br.com.moip.resource.links.PayBoleto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.resource.links;
public class PayBoleto {
private String printHref;
private String redirectHref;
public String getPrintHref() {
return printHref;
}
public void setPrintHref(String printHref) { this.printHref = printHref; }
public String getRedirectHref() {
return redirectHref;
}
public void setRedirectHref(String redirectHref) { this.redirectHref = redirectHref; }
@Override
public String toString() {
return new StringBuilder("PayBoleto{")
.append("printHref=").append(printHref)
.append("redirectHref=").append(redirectHref)
.append('}').toString();
}
}