br.com.moip.response.RefundsListResponse 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.response;
import br.com.moip.resource.Refund;
import java.util.List;
public class RefundsListResponse {
private List refunds;
public void setRefunds(List refunds) { this.refunds = refunds; }
public List getRefunds() { return refunds; }
@Override
public String toString() {
return new StringBuilder("RefundsListResponse{")
.append("refunds=").append(refunds)
.append('}').toString();
}
}