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

br.com.moip.resource.links.PayBoleto Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy