br.com.moip.response.EntriesListResponse 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.Entry;
import java.util.ArrayList;
import java.util.List;
public class EntriesListResponse extends ArrayList {
private List entries;
@Override
public String toString() {
return new StringBuilder("EntriesListResponse=[")
.append(entries)
.append(']').toString();
}
}