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

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

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource.links;

public class TransferLinks {

    private Href self;
    private Href reverse;

    public String getSelf() { return self.getHref(); }

    public String getReverse() { return reverse.getHref(); }

    @Override
    public String toString() {
        return new StringBuilder("Links{")
        .append("reverse=").append(reverse)
        .append(", self=").append(self)
        .append('}').toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy